Difference between revisions of "Terraform resource: aws route53 zone"

From wikieduonline
Jump to navigation Jump to search
Line 2: Line 2:
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_zone
 
* https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route53_zone
 
  aws_route53_zone
 
  aws_route53_zone
 +
 +
 +
== Official example ==
 +
resource "aws_route53_zone" "private" {
 +
  name = "example.com"
 +
 +
  vpc {
 +
    vpc_id = aws_vpc.example.id
 +
  }
 +
}
  
  

Revision as of 07:56, 2 February 2023

aws_route53_zone


Official example

resource "aws_route53_zone" "private" {
  name = "example.com" 

  vpc {
    vpc_id = aws_vpc.example.id
  }
}


Related

See also

Advertising: