In the challenge is stated this :
For this task, create a VPC named `datacenter-vpc` in the `us-east-1` region with the Amazon-provided IPv6 CIDR block using terraform.
but where can I find the amazon-provided ipv6 cidr block ??
In the challenge is stated this :
For this task, create a VPC named `datacenter-vpc` in the `us-east-1` region with the Amazon-provided IPv6 CIDR block using terraform.
but where can I find the amazon-provided ipv6 cidr block ??
Thanks
But I still I do not see where this part is coming from :
cidr_block = "10.0.0.0/16"
@rwobben
The 10.0.0.0/16
line is the mandatory IPv4 CIDR block that every VPC requires.
AWS automatically adds the IPv6 block when you include
assign_generated_ipv6_cidr_block = true
,
so you don’t need to specify or “find” any IPv6 range yourself.
You can see an example in the official Terraform documentation here:Terraform Registry – aws_vpc Resource
Thanks,
finally solved this one
Alright glad i could help