Fixed uses of HostedZone
This commit is contained in:
parent
ae6f9dcb71
commit
f247cd0f48
@ -1,6 +1,13 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
template = {
|
||||
"Parameters": {
|
||||
"R53ZoneName": {
|
||||
"Type": "String",
|
||||
"Default": "my_zone"
|
||||
}
|
||||
},
|
||||
|
||||
"Resources": {
|
||||
"Ec2Instance": {
|
||||
"Type": "AWS::EC2::Instance",
|
||||
@ -13,20 +20,20 @@ template = {
|
||||
"HostedZone": {
|
||||
"Type": "AWS::Route53::HostedZone",
|
||||
"Properties": {
|
||||
"Name": "my_zone"
|
||||
"Name": {"Ref": "R53ZoneName"}
|
||||
}
|
||||
},
|
||||
|
||||
"myDNSRecord": {
|
||||
"Type": "AWS::Route53::RecordSet",
|
||||
"Properties": {
|
||||
"HostedZoneName": {"Ref": "HostedZone"},
|
||||
"HostedZoneId": {"Ref": "HostedZone"},
|
||||
"Comment": "DNS name for my instance.",
|
||||
"Name": {
|
||||
"Fn::Join": ["", [
|
||||
{"Ref": "Ec2Instance"}, ".",
|
||||
{"Ref": "AWS::Region"}, ".",
|
||||
{"Ref": "HostedZone"}, "."
|
||||
{"Ref": "R53ZoneName"}, "."
|
||||
]]
|
||||
},
|
||||
"Type": "A",
|
||||
|
@ -26,7 +26,7 @@ template = {
|
||||
"myDNSRecord": {
|
||||
"Type": "AWS::Route53::RecordSet",
|
||||
"Properties": {
|
||||
"HostedZoneName": {"Ref": "HostedZone"},
|
||||
"HostedZoneId": {"Ref": "HostedZone"},
|
||||
"Comment": "DNS name for my instance.",
|
||||
"Name": "my_record_set",
|
||||
"Type": "A",
|
||||
|
@ -5,30 +5,37 @@ template = {
|
||||
|
||||
"Description": "AWS CloudFormation Sample Template Route53_RoundRobin: Sample template showing how to use weighted round robin (WRR) DNS entried via Amazon Route 53. This contrived sample uses weighted CNAME records to illustrate that the weighting influences the return records. It assumes that you already have a Hosted Zone registered with Amazon Route 53. **WARNING** This template creates one or more AWS resources. You will be billed for the AWS resources used if you create a stack from this template.",
|
||||
|
||||
"Parameters": {
|
||||
"R53ZoneName": {
|
||||
"Type": "String",
|
||||
"Default": "my_zone"
|
||||
}
|
||||
},
|
||||
|
||||
"Resources": {
|
||||
|
||||
"MyZone": {
|
||||
"Type": "AWS::Route53::HostedZone",
|
||||
"Properties": {
|
||||
"Name": "my_zone"
|
||||
"Name": {"Ref": "R53ZoneName"}
|
||||
}
|
||||
},
|
||||
|
||||
"MyDNSRecord": {
|
||||
"Type": "AWS::Route53::RecordSetGroup",
|
||||
"Properties": {
|
||||
"HostedZoneName": {"Ref": "MyZone"},
|
||||
"HostedZoneId": {"Ref": "MyZone"},
|
||||
"Comment": "Contrived example to redirect to aws.amazon.com 75% of the time and www.amazon.com 25% of the time.",
|
||||
"RecordSets": [{
|
||||
"SetIdentifier": {"Fn::Join": [" ", [{"Ref": "AWS::StackName"}, "AWS"]]},
|
||||
"Name": {"Fn::Join": ["", [{"Ref": "AWS::StackName"}, ".", {"Ref": "AWS::Region"}, ".", {"Ref": "MyZone"}, "."]]},
|
||||
"Name": {"Fn::Join": ["", [{"Ref": "AWS::StackName"}, ".", {"Ref": "AWS::Region"}, ".", {"Ref": "R53ZoneName"}, "."]]},
|
||||
"Type": "CNAME",
|
||||
"TTL": "900",
|
||||
"ResourceRecords": ["aws.amazon.com"],
|
||||
"Weight": "3"
|
||||
}, {
|
||||
"SetIdentifier": {"Fn::Join": [" ", [{"Ref": "AWS::StackName"}, "Amazon"]]},
|
||||
"Name": {"Fn::Join": ["", [{"Ref": "AWS::StackName"}, ".", {"Ref": "AWS::Region"}, ".", {"Ref": "MyZone"}, "."]]},
|
||||
"Name": {"Fn::Join": ["", [{"Ref": "AWS::StackName"}, ".", {"Ref": "AWS::Region"}, ".", {"Ref": "R53ZoneName"}, "."]]},
|
||||
"Type": "CNAME",
|
||||
"TTL": "900",
|
||||
"ResourceRecords": ["www.amazon.com"],
|
||||
|
Loading…
x
Reference in New Issue
Block a user