Configuration template to create a Route53 Hosted Zone (DNS domain). Both public and private hosted zones are supported.
Configuration settings include:
- Domain name: fully qualified domain name, for example, mycompany.com
- Comment: Optionally provide a comment for the hosted zone configuration
- Type: Public or Private. With Private Hosted Zones, a VPC Id and Region must be provided (Multiple VPCs can be included)
- CloudWatch Log Group: Enables DNS query logging. The Log Group provided must have the proper access policy configured beforehand
Missing Parameters
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
HostedZone:
Type: 'AWS::Route53::HostedZone'
Properties:
Name: ''
Parameters: {}
Metadata: {}
Conditions: {}