Skip to content

Commit

Permalink
depends_on
Browse files Browse the repository at this point in the history
  • Loading branch information
nalbam committed Jan 9, 2020
1 parent 56da2f4 commit c7068d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions 83-acm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ resource "aws_route53_record" "cert_validation" {
records = [
aws_acm_certificate.cert[0].domain_validation_options[0].resource_record_value,
]

depends_on = [aws_acm_certificate.cert]
}

resource "aws_acm_certificate_validation" "cert" {
Expand Down
2 changes: 1 addition & 1 deletion examples/dev-demo/sample-node.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ module "sample_node" {
name = "sample-node"
stage = "dev"
image = "nalbam/sample-node"
port = "8080"
port = "3000"
cpu = "256"
memory = "512"
desired = "1"
Expand Down

0 comments on commit c7068d7

Please sign in to comment.