Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/project-factor…
Browse files Browse the repository at this point in the history
…y/google to v16
  • Loading branch information
renovate[bot] committed Aug 23, 2024
1 parent 105a0db commit 2994dc9
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 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 @@ -29,7 +29,7 @@ resource "random_id" "suffix" {
*******************************************/
module "cicd_project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

name = local.cicd_project_name
random_project_id = true
Expand Down
18 changes: 9 additions & 9 deletions 1-org/envs/shared/projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ locals {

module "org_audit_logs" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -67,7 +67,7 @@ module "org_audit_logs" {

module "org_billing_export" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -100,7 +100,7 @@ module "org_billing_export" {

module "common_kms" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -134,7 +134,7 @@ module "common_kms" {

module "org_secrets" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -167,7 +167,7 @@ module "org_secrets" {

module "interconnect" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -200,7 +200,7 @@ module "interconnect" {

module "scc_notifications" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -233,7 +233,7 @@ module "scc_notifications" {

module "dns_hub" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -274,7 +274,7 @@ module "dns_hub" {

module "base_network_hub" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"
count = var.enable_hub_and_spoke ? 1 : 0

random_project_id = true
Expand Down Expand Up @@ -324,7 +324,7 @@ resource "google_project_iam_member" "network_sa_base" {

module "restricted_network_hub" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"
count = var.enable_hub_and_spoke ? 1 : 0

random_project_id = true
Expand Down
4 changes: 2 additions & 2 deletions 1-org/modules/network/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

module "base_shared_vpc_host_project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down Expand Up @@ -56,7 +56,7 @@ module "base_shared_vpc_host_project" {

module "restricted_shared_vpc_host_project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down
2 changes: 1 addition & 1 deletion 2-environments/modules/env_baseline/kms.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

module "env_kms" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down
2 changes: 1 addition & 1 deletion 2-environments/modules/env_baseline/secrets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

module "env_secrets" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down
2 changes: 1 addition & 1 deletion 4-projects/modules/single_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ locals {

module "project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

random_project_id = true
random_project_id_length = 4
Expand Down
2 changes: 1 addition & 1 deletion test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ resource "google_folder" "test_folder" {

module "project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

name = "ci-foundation-${random_string.suffix.result}"
random_project_id = true
Expand Down

0 comments on commit 2994dc9

Please sign in to comment.