Skip to content

Instantly share code, notes, and snippets.

@viggin543
Created September 24, 2022 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viggin543/e7cf99487fe421f5123ab1132f3f8b74 to your computer and use it in GitHub Desktop.
Save viggin543/e7cf99487fe421f5123ab1132f3f8b74 to your computer and use it in GitHub Desktop.
resource "google_compute_managed_ssl_certificate" "foo-certificate" {
name = "foo-cert"
managed {
domains = var.project == "foo-staging" ? ["foo.bar-stg.com.", "foo.bar.ua."] : [
"foo.bar-prod.com.", "app.foo.ua."
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment