Skip to content

Commit fa6e9d7

Browse files
upgraded
1 parent 8a81fd5 commit fa6e9d7

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

README.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ github_repo: clouddrove/terraform-aws-acm
1616
# Badges to display
1717
badges:
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"

main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# for resources. You can use terraform-labels to implement a strict naming
88
# convention.
99
module "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

versions.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Terraform version
22
terraform {
3-
required_version = ">= 0.12"
3+
required_version = ">= 0.13"
4+
required_providers {
5+
aws = {
6+
source = "hashicorp/aws"
7+
}
8+
}
49
}

0 commit comments

Comments
 (0)