Skip to content

Commit

Permalink
Adding cloudresourcemanager api
Browse files Browse the repository at this point in the history
  • Loading branch information
silvermx committed Nov 7, 2023
1 parent 972576e commit e21654e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ provider "google-beta" {
credentials = "terraform-sa-key.json"
}

# Enable Secret Manager API
resource "google_project_service" "cloudresourcemanager_api" {
service = "cloudresourcemanager.googleapis.com"
disable_on_destroy = false
}

# Enable Network Manager API
resource "google_project_service" "networkmanagement_api" {
service = "networkmanagement.googleapis.com"
Expand Down

0 comments on commit e21654e

Please sign in to comment.