-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove default addition of IAP message to resource google_compute_reg…
…ion_backend_service
- Loading branch information
1 parent
998c06e
commit 739e327
Showing
3 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
mmv1/templates/terraform/examples/region_backend_service_external_iap.tf.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
resource "google_compute_region_backend_service" "<%= ctx[:primary_resource_id] %>" { | ||
name = "<%= ctx[:vars]['region_backend_service_name'] %>" | ||
region = "us-central1" | ||
protocol = "HTTP" | ||
load_balancing_scheme = "EXTERNAL" | ||
iap { | ||
oauth2_client_id = "abc" | ||
oauth2_client_secret = "xyz" | ||
} | ||
} |