Skip to content

Commit

Permalink
Merge pull request #1336 from bjohnrl/master
Browse files Browse the repository at this point in the history
Certificate renewal through terraform
  • Loading branch information
juliocc authored Apr 19, 2023
2 parents 66f0090 + e24b993 commit df8c61f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/net-ilb-l7/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ resource "google_compute_region_ssl_certificate" "default" {
name = "${var.name}-${each.key}"
certificate = each.value.certificate
private_key = each.value.private_key

lifecycle {
create_before_destroy = true
}
}

resource "google_compute_region_target_http_proxy" "default" {
Expand Down

0 comments on commit df8c61f

Please sign in to comment.