Merge pull request #1336 from bjohnrl/master

Certificate renewal through terraform
This commit is contained in:
Julio Castillo 2023-04-19 11:20:00 +02:00 committed by GitHub
commit df8c61fe69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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" {