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
73
73
module "production_www" {
74
74
source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
75
75
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
79
79
}
80
80
```
81
81
@@ -96,6 +96,7 @@ Available targets:
96
96
97
97
```
98
98
<!-- markdownlint-restore -->
99
+ <!-- markdownlint-disable -->
99
100
## Requirements
100
101
101
102
| Name | Version |
@@ -133,6 +134,7 @@ Available targets:
133
134
| parent\_ zone\_ id | ID of the hosted zone to contain the records |
134
135
| parent\_ zone\_ name | Name of the hosted zone to contain the records |
135
136
137
+ <!-- markdownlint-restore -->
136
138
137
139
138
140
Original file line number Diff line number Diff line change @@ -53,9 +53,9 @@ usage: |-
53
53
module "production_www" {
54
54
source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
55
55
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
59
59
}
60
60
```
61
61
include :
Original file line number Diff line number Diff line change
1
+ <!-- markdownlint-disable -->
1
2
## Requirements
2
3
3
4
| Name | Version |
35
36
| parent\_ zone\_ id | ID of the hosted zone to contain the records |
36
37
| parent\_ zone\_ name | Name of the hosted zone to contain the records |
37
38
39
+ <!-- markdownlint-restore -->
You can’t perform that action at this time.
0 commit comments