Skip to content

Commit 6a17ba1

Browse files
holyjakactions-bot
andauthored
update readme for TF0.12 (#27)
Co-authored-by: actions-bot <58130806+actions-bot@users.noreply.github.com>
1 parent 7f9c189 commit 6a17ba1

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ This will define a `A` resource record for `www.example.com` as an alias of the
7373
module "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

README.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
```
6161
include:

docs/terraform.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- markdownlint-disable -->
12
## Requirements
23

34
| Name | Version |
@@ -35,3 +36,4 @@
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 -->

0 commit comments

Comments
 (0)