This message was deleted.
# aws
s
This message was deleted.
s
Same with VPC :
vpc = aws.ec2.Vpc("my-vpc", _cidr_block_="10.0.0.0/16")
The created VPC has no name in AWS.
g
there is a difference between
resource_name
and
Name
(display name) Many AWS resources have a display name represented as the tag
Name
. And for those, the pulumi provider won't apply the value of
resource_name
to the tag
Name
. So you need to add
tags={"Name":"YOUR VALUE"}
👆🏻 1
💯 1
s
Sorry for late reply @great-sunset-355, thank you, it helps a lot!
g
I did not have much time to respond yesterday, but you can also auto-tag resources like this: https://github.com/joeduffy/aws-tags-example/issues/3 tl;dr -> transform, check if resource has
tags
property, add your value
👀 1
🙌 1