Certifiate

This commit is contained in:
bjohnrl 2023-04-18 13:15:02 +01:00 committed by GitHub
parent 66f00903c6
commit 5807c03d88
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" {