Lints.
This commit is contained in:
parent
1433f28846
commit
f37bad0e00
260 changed files with 6363 additions and 3766 deletions
|
|
@ -1,39 +1,39 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
template = {
|
||||
"Resources" : {
|
||||
"Resources": {
|
||||
"HostedZone": {
|
||||
"Type" : "AWS::Route53::HostedZone",
|
||||
"Properties" : {
|
||||
"Name" : "my_zone"
|
||||
"Type": "AWS::Route53::HostedZone",
|
||||
"Properties": {
|
||||
"Name": "my_zone"
|
||||
}
|
||||
},
|
||||
|
||||
"my_health_check": {
|
||||
"Type": "AWS::Route53::HealthCheck",
|
||||
"Properties" : {
|
||||
"HealthCheckConfig" : {
|
||||
"FailureThreshold" : 3,
|
||||
"IPAddress" : "10.0.0.4",
|
||||
"Port" : 80,
|
||||
"RequestInterval" : 10,
|
||||
"ResourcePath" : "/",
|
||||
"Type" : "HTTP",
|
||||
"Properties": {
|
||||
"HealthCheckConfig": {
|
||||
"FailureThreshold": 3,
|
||||
"IPAddress": "10.0.0.4",
|
||||
"Port": 80,
|
||||
"RequestInterval": 10,
|
||||
"ResourcePath": "/",
|
||||
"Type": "HTTP",
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
"myDNSRecord" : {
|
||||
"Type" : "AWS::Route53::RecordSet",
|
||||
"Properties" : {
|
||||
"HostedZoneName" : { "Ref" : "HostedZone" },
|
||||
"Comment" : "DNS name for my instance.",
|
||||
"Name" : "my_record_set",
|
||||
"Type" : "A",
|
||||
"TTL" : "900",
|
||||
"ResourceRecords" : ["my.example.com"],
|
||||
"HealthCheckId": {"Ref": "my_health_check"},
|
||||
}
|
||||
"myDNSRecord": {
|
||||
"Type": "AWS::Route53::RecordSet",
|
||||
"Properties": {
|
||||
"HostedZoneName": {"Ref": "HostedZone"},
|
||||
"Comment": "DNS name for my instance.",
|
||||
"Name": "my_record_set",
|
||||
"Type": "A",
|
||||
"TTL": "900",
|
||||
"ResourceRecords": ["my.example.com"],
|
||||
"HealthCheckId": {"Ref": "my_health_check"},
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue