Skip to content

Commit

Permalink
Add managed SLL cert. (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
anybodys committed Feb 20, 2024
1 parent 29852a8 commit 9f13a40
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions infra/app/networking.tf
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,12 @@ resource "google_cloud_run_service_iam_member" "public-access" {
role = "roles/run.invoker"
member = "allUsers"
}

resource "google_compute_managed_ssl_certificate" "lb_default" {
provider = google-beta
name = "artist-ssl-cert"

managed {
domains = [var.domain]
}
}

0 comments on commit 9f13a40

Please sign in to comment.