sparse-intern-71089
10/05/2022, 8:56 AMsteep-lamp-20408
10/05/2022, 8:58 AMvpc = aws.ec2.Vpc("my-vpc", _cidr_block_="10.0.0.0/16")
The created VPC has no name in AWS.great-sunset-355
10/05/2022, 10:10 AMresource_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"}
steep-lamp-20408
10/13/2022, 5:54 AMgreat-sunset-355
10/13/2022, 7:06 AMtags
property, add your value