File tree Expand file tree Collapse file tree 3 files changed +14
-9
lines changed
Expand file tree Collapse file tree 3 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ github_repo: clouddrove/terraform-aws-acm
1616# Badges to display
1717badges :
1818 - name : " Terraform"
19- image : " https://img.shields.io/badge/Terraform-v0.12 -green"
19+ image : " https://img.shields.io/badge/Terraform-v0.13 -green"
2020 url : " https://www.terraform.io"
2121 - name : " Licence"
2222 image : " https://img.shields.io/badge/License-MIT-blue.svg"
@@ -36,7 +36,7 @@ usage : |-
3636 ### ACM with DNS
3737 ```hcl
3838 module "acm" {
39- source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.5 "
39+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.13.0 "
4040 name = "certificate"
4141 application = "clouddrove"
4242 environment = "test"
@@ -51,7 +51,7 @@ usage : |-
5151 ### ACM with Email
5252 ```hcl
5353 module "acm" {
54- source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.4 "
54+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.13.0 "
5555 name = "certificate"
5656 application = "clouddrove"
5757 environment = "test"
@@ -66,7 +66,7 @@ usage : |-
6666 ### ACM with Import Certificate
6767 ```hcl
6868 module "acm" {
69- source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.4 "
69+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.13.0 "
7070 name = "certificate"
7171 application = "clouddrove"
7272 environment = "test"
Original file line number Diff line number Diff line change 77# for resources. You can use terraform-labels to implement a strict naming
88# convention.
99module "labels" {
10- source = " git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12 .0"
10+ source = " git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.13 .0"
1111
1212 name = var. name
1313 application = var. application
@@ -67,9 +67,9 @@ resource "aws_route53_record" "default" {
6767 zone_id = join (" " , data. aws_route53_zone . default . * . zone_id )
6868 ttl = var. ttl
6969 allow_overwrite = true
70- name = join (" " ,aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_name )
71- type = join (" " ,aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_type )
72- records = [join (" " ,aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_value )]
70+ name = join (" " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_name )
71+ type = join (" " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_type )
72+ records = [join (" " , aws_acm_certificate. cert [0 ]. domain_validation_options . * . resource_record_value )]
7373}
7474
7575# Module : ACM CERTIFICATE VALIDATION
Original file line number Diff line number Diff line change 11# Terraform version
22terraform {
3- required_version = " >= 0.12"
3+ required_version = " >= 0.13"
4+ required_providers {
5+ aws = {
6+ source = " hashicorp/aws"
7+ }
8+ }
49}
You can’t perform that action at this time.
0 commit comments