Skip to content

Commit

Permalink
fix: Update project-factory module to 10.1 (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
vovinacci committed Jul 8, 2021
1 parent a266e02 commit f46e2e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 0-bootstrap/modules/jenkins-agent/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ resource "random_id" "suffix" {
*******************************************/
module "cicd_project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 10.0"
version = "~> 10.1"
name = local.cicd_project_name
random_project_id = true
disable_services_on_destroy = false
Expand Down
4 changes: 2 additions & 2 deletions 1-org/envs/shared/projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

module "org_audit_logs" {
source = "terraform-google-modules/project-factory/google"
version = "~> 10.0"
version = "~> 10.1"
random_project_id = "true"
impersonate_service_account = var.terraform_service_account
default_service_account = "deprivilege"
Expand All @@ -46,7 +46,7 @@ module "org_audit_logs" {

module "org_billing_logs" {
source = "terraform-google-modules/project-factory/google"
version = "~> 10.0"
version = "~> 10.1"
random_project_id = "true"
impersonate_service_account = var.terraform_service_account
default_service_account = "deprivilege"
Expand Down
2 changes: 1 addition & 1 deletion test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "google_folder" "test_folder" {

module "project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 10.0"
version = "~> 10.1"

name = "ci-foundation"
random_project_id = true
Expand Down

0 comments on commit f46e2e8

Please sign in to comment.