Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Update Terraform terraform-google-modules/project-factory/google to v17 #942

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions examples/app_engine/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "random_string" "suffix" {

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

name = "appeng-${random_string.suffix.result}"
random_project_id = true
Expand All @@ -38,7 +38,7 @@ module "app-engine-project" {

module "app-engine" {
source = "terraform-google-modules/project-factory/google//modules/app_engine"
version = "~> 16.0"
version = "~> 17.0"

project_id = module.app-engine-project.project_id
location_id = "us-east4"
Expand Down
4 changes: 2 additions & 2 deletions examples/budget_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resource "random_string" "suffix" {

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

name = "budget-project-${random_string.suffix.result}"
random_project_id = true
Expand Down Expand Up @@ -50,7 +50,7 @@ resource "google_pubsub_topic" "budget" {

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

billing_account = var.billing_account
projects = [var.parent_project_id, module.budget_project.project_id]
Expand Down
2 changes: 1 addition & 1 deletion examples/essential_contacts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

name = "pf-ci-test-ec-${var.random_string_for_testing}"
random_project_id = true
Expand Down
2 changes: 1 addition & 1 deletion examples/fabric_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "random_string" "prefix" {

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

activate_apis = var.activate_apis
billing_account = var.billing_account
Expand Down
2 changes: 1 addition & 1 deletion examples/gke_shared_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

random_project_id = true
name = "sample-gke-shared-project"
Expand Down
2 changes: 1 addition & 1 deletion examples/group_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ provider "gsuite" {

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

random_project_id = true
name = "group-sample-project"
Expand Down
4 changes: 2 additions & 2 deletions examples/project-hierarchy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "google_folder" "prod" {

module "project-prod-gke" {
source = "terraform-google-modules/project-factory/google//modules/gsuite_enabled"
version = "~> 16.0"
version = "~> 17.0"

random_project_id = true
name = "hierarchy-sample-prod-gke"
Expand All @@ -44,7 +44,7 @@ module "project-prod-gke" {

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

random_project_id = true
name = "hierarchy-sample-factory"
Expand Down
2 changes: 1 addition & 1 deletion examples/project_services/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*****************************************/
module "project-services" {
source = "terraform-google-modules/project-factory/google//modules/project_services"
version = "~> 16.0"
version = "~> 17.0"

project_id = var.project_id
enable_apis = var.enable
Expand Down
2 changes: 1 addition & 1 deletion examples/quota_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "random_string" "suffix" {

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

name = "pf-ci-test-quota-${random_string.suffix.result}"
random_project_id = true
Expand Down
8 changes: 4 additions & 4 deletions examples/shared_vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ locals {
*****************************************/
module "host-project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 16.0"
version = "~> 17.0"

random_project_id = true
name = var.host_project_name
Expand Down Expand Up @@ -94,7 +94,7 @@ module "vpc" {
*****************************************/
module "service-project" {
source = "terraform-google-modules/project-factory/google//modules/svpc_service_project"
version = "~> 16.0"
version = "~> 17.0"

name = var.service_project_name
random_project_id = false
Expand Down Expand Up @@ -122,7 +122,7 @@ module "service-project" {
*****************************************/
module "service-project-b" {
source = "terraform-google-modules/project-factory/google//modules/svpc_service_project"
version = "~> 16.0"
version = "~> 17.0"

name = "b-${var.service_project_name}"
random_project_id = false
Expand Down Expand Up @@ -157,7 +157,7 @@ module "service-project-b" {
*****************************************/
module "service-project-c" {
source = "terraform-google-modules/project-factory/google//modules/svpc_service_project"
version = "~> 16.0"
version = "~> 17.0"

name = "c-${var.service_project_name}"
random_project_id = false
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

random_project_id = true
name = "simple-sample-project"
Expand Down
2 changes: 1 addition & 1 deletion examples/tags_project/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

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

random_project_id = true
name = "simple-tag-project"
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" "ci_pfactory_folder" {

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

name = "ci-pfactory-tests"
random_project_id = true
Expand Down
Loading