File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ This will define a `A` resource record for `www.example.com` as an alias of the
7373module "production_www" {
7474 source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
7575 aliases = ["www.example.com.", "static1.cdn.example.com.", "static2.cdn.example.com"]
76- parent_zone_id = "${ var.parent_zone_id}"
77- target_dns_name = "${ aws_elb.example.dns_name}"
78- target_zone_id = "${ aws_elb.example.zone_id}"
76+ parent_zone_id = var.parent_zone_id
77+ target_dns_name = aws_elb.example.dns_name
78+ target_zone_id = aws_elb.example.zone_id
7979}
8080```
8181
@@ -96,6 +96,7 @@ Available targets:
9696
9797```
9898<!-- markdownlint-restore -->
99+ <!-- markdownlint-disable -->
99100## Requirements
100101
101102| Name | Version |
@@ -133,6 +134,7 @@ Available targets:
133134| parent\_ zone\_ id | ID of the hosted zone to contain the records |
134135| parent\_ zone\_ name | Name of the hosted zone to contain the records |
135136
137+ <!-- markdownlint-restore -->
136138
137139
138140
Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ usage: |-
5353 module "production_www" {
5454 source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
5555 aliases = ["www.example.com.", "static1.cdn.example.com.", "static2.cdn.example.com"]
56- parent_zone_id = "${ var.parent_zone_id}"
57- target_dns_name = "${ aws_elb.example.dns_name}"
58- target_zone_id = "${ aws_elb.example.zone_id}"
56+ parent_zone_id = var.parent_zone_id
57+ target_dns_name = aws_elb.example.dns_name
58+ target_zone_id = aws_elb.example.zone_id
5959 }
6060 ```
6161include :
Original file line number Diff line number Diff line change 1+ <!-- markdownlint-disable -->
12## Requirements
23
34| Name | Version |
3536| parent\_ zone\_ id | ID of the hosted zone to contain the records |
3637| parent\_ zone\_ name | Name of the hosted zone to contain the records |
3738
39+ <!-- markdownlint-restore -->
You can’t perform that action at this time.
0 commit comments