Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions gcp/terraform/operations/budget-alert/provider.tf
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@

// Uncomment this section if you don't have provider's configuration generated from collie-hub

# terraform {
# required_providers {
# google = {
# source = "hashicorp/google"
# version = "5.8.0"
# }
# }
# }
terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "6.17.0"
}
}
}


# provider "google" {
# project = var.projectid
# billing_project = var.projectid
# user_project_override = true
# }
provider "google" {
project = var.projectid
billing_project = var.projectid
user_project_override = true
}

4 changes: 2 additions & 2 deletions gcp/terraform/storage/storage-bucket/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ terraform {

provider "google" {
# Update credentials to the correct location, alternatively set GOOGLE_APPLICATION_CREDENTIALS=/path/to/.ssh/bq-key.json in your shell session and remove the credentials attribute.
credentials = file("./key.json")
project = var.project_id
#credentials = file("./key.json")
project = var.project_id
}


Loading