Skip to content

Commit

Permalink
update readme for TF0.12 (#27)
Browse files Browse the repository at this point in the history
Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
holyjak and actions-bot authored Sep 9, 2020
1 parent 7f9c189 commit 6a17ba1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ This will define a `A` resource record for `www.example.com` as an alias of the
module "production_www" {
source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
aliases = ["www.example.com.", "static1.cdn.example.com.", "static2.cdn.example.com"]
parent_zone_id = "${var.parent_zone_id}"
target_dns_name = "${aws_elb.example.dns_name}"
target_zone_id = "${aws_elb.example.zone_id}"
parent_zone_id = var.parent_zone_id
target_dns_name = aws_elb.example.dns_name
target_zone_id = aws_elb.example.zone_id
}
```

Expand All @@ -96,6 +96,7 @@ Available targets:
```
<!-- markdownlint-restore -->
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
Expand Down Expand Up @@ -133,6 +134,7 @@ Available targets:
| parent\_zone\_id | ID of the hosted zone to contain the records |
| parent\_zone\_name | Name of the hosted zone to contain the records |

<!-- markdownlint-restore -->



Expand Down
6 changes: 3 additions & 3 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ usage: |-
module "production_www" {
source = "git::https://github.com/cloudposse/terraform-aws-route53-alias.git?ref=master"
aliases = ["www.example.com.", "static1.cdn.example.com.", "static2.cdn.example.com"]
parent_zone_id = "${var.parent_zone_id}"
target_dns_name = "${aws_elb.example.dns_name}"
target_zone_id = "${aws_elb.example.zone_id}"
parent_zone_id = var.parent_zone_id
target_dns_name = aws_elb.example.dns_name
target_zone_id = aws_elb.example.zone_id
}
```
include:
Expand Down
2 changes: 2 additions & 0 deletions docs/terraform.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- markdownlint-disable -->
## Requirements

| Name | Version |
Expand Down Expand Up @@ -35,3 +36,4 @@
| parent\_zone\_id | ID of the hosted zone to contain the records |
| parent\_zone\_name | Name of the hosted zone to contain the records |

<!-- markdownlint-restore -->

0 comments on commit 6a17ba1

Please sign in to comment.