github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/scripts/aws-ipv6/main.tf (about)

     1  terraform {
     2    required_providers {
     3      aws = {
     4        source = "hashicorp/aws"
     5        version = "~> 4.65.0"
     6      }
     7    }
     8  }
     9  
    10  provider "aws" {
    11  }
    12  
    13  resource "aws_vpc" "v6_only" {
    14    enable_dns_support = true
    15    enable_dns_hostnames = true
    16  }