VPC Ipv6CidrBlocks
are not immediately populated
#1798
Labels
kind/bug
Some behavior is incorrect or out of spec
Ipv6CidrBlocks
are not immediately populated
#1798
What happened?
In order to create a VPC with a Ipv6 CIDR block you have to use a separate
AWS::EC2::VPCCidrBlock
resource. Once theVPCCidrBlock
resource is created then you are able to perform acloudcontrol get-resource
request on theVpc
resource and theipv6CidrBlocks
attribute will be populated. Unfortunately this provider cannot handle that scenario. The actual flow looks something like this:aws-native.ec2.Vpc
get-resource
to populate attributes -ipv6CidrBlocks
is emptyaws-native.ec2.VpcCidrBlock
Vpc.ipv6CidrBlocks
which is empty because we don't do anotherget-resource
on theVpc
after creating theVpcCidrBlock
Users will have to always remember to access the CidrBlock from the correct
VpcCidrBlock
resource.Example
Output of
pulumi about
N/A
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered: