-
Notifications
You must be signed in to change notification settings - Fork 3
Added ACM #3
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with removal of development module ... { source ="../.."
changes.
@@ -28,7 +26,7 @@ module "subnets" { | |||
} | |||
|
|||
module "codefresh_backing_services" { | |||
source = "git::https://github.com/cloudposse/terraform-aws-codefresh-backing-services.git?ref=0.1.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
restore to original?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
example
easy to run based on the local directory.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one more change to address
acm.tf
Outdated
} | ||
|
||
module "acm_request_certificate" { | ||
source = "git::https://github.com/cloudposse/terraform-aws-acm-request-certificate.git?ref=add/enabled-var" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ref=add/enabled-var
=> ref=tags/<release>
?
acm.tf
Outdated
|
||
variable "acm_zone_name" { | ||
type = "string" | ||
default = "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it probably needs to be a required param
acm.tf
Outdated
|
||
output "acm_id" { | ||
value = "${module.acm_request_certificate.id}" | ||
description = "The ARN of the certificate" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
description = "The ARN of the certificate" | |
description = "The ID of the certificate" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see comments
What
Why