@@ -70,11 +70,11 @@ Here are some examples of how you can use this module in your inventory structur
7070### ACM with DNS
7171``` hcl
7272module "acm" {
73- source = "git::https://github.com/clouddrove/terraform-aws-acm.git"
73+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.1 "
7474 name = "certificate"
7575 application = "clouddrove"
7676 environment = "test"
77- label_order = ["environment", "name ", "application "]
77+ label_order = ["environment", "application ", "name "]
7878 domain_name = "clouddrove.com"
7979 validation_method = "DNS"
8080 dns_validation = false
@@ -85,11 +85,11 @@ module "acm" {
8585### ACM with Email
8686``` hcl
8787module "acm" {
88- source = "git::https://github.com/clouddrove/terraform-aws-acm.git"
88+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.1 "
8989 name = "certificate"
9090 application = "clouddrove"
9191 environment = "test"
92- label_order = ["environment", "name ", "application "]
92+ label_order = ["environment", "application ", "name "]
9393 domain_name = "clouddrove.com"
9494 validation_method = "EMAIL"
9595 validate_certificate = false
@@ -99,11 +99,11 @@ module "acm" {
9999### ACM with Import Certificate
100100``` hcl
101101module "acm" {
102- source = "git::https://github.com/clouddrove/terraform-aws-acm.git"
102+ source = "git::https://github.com/clouddrove/terraform-aws-acm.git?ref=tags/0.12.1 "
103103 name = "certificate"
104104 application = "clouddrove"
105105 environment = "test"
106- label_order = ["environment", "name ", "application "]
106+ label_order = ["environment", "application ", "name "]
107107 private_key = "./../../../clouddrove-private-key.pem"
108108 certificate_body = "./../../../clouddrove-cert.pem"
109109 certificate_chain = "./../../../clouddrove-chain.crt"
0 commit comments