Skip to content

Commit b26df14

Browse files
committed
Test fixes (provider minor update changed outputs), minor fixes to contributing.md, remove member node in all tests yaml inventory files.
1 parent 02d5ee6 commit b26df14

File tree

47 files changed

+58
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+58
-71
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ uv run pytest tests/cloud_run_single/0-projects
6565

6666
### Generate the inventory for a factory module
6767

68-
Run the command below and remove your user name from the output file in path `.values.google_service_account_iam_member.me_sa_token_creator[0].member`:
68+
Run the command below and remove from the output file the element `.values.google_service_account_iam_member.me_sa_token_creator[0].member`:
6969

7070
```shell
7171
# Generate the inventory for cloud-run-single/0-projects
@@ -77,7 +77,7 @@ uv run tools/plan_summary.py cloud-run-single/0-projects \
7777
## Add a new factory
7878

7979
- Start copying an existing factory. [cloud-run-single](cloud-run-single/README.md) is a typical choice. Modify it as needed.
80-
- Update the `uv pyproject.toml` to your needs.
80+
- Update the uv `pyproject.toml` to your needs.
8181
- Please check the [official documentation](https://docs.astral.sh/uv/getting-started/installation/#standalone-installer) on how to install `uv`. UV github actions are being used for the ci pipeline to run tests and tools.
8282
- Use the commands from the [section above](#manage-python-app-dependencies-with-uv)
8383
- You can learn how to use `uv` [here](https://docs.astral.sh/uv/#highlights).

ai-apps-conversational/0-projects/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020
}
2121

2222
module "projects" {
23-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v49.0.0"
23+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v50.0.0"
2424
data_defaults = {
2525
billing_account = var.project_config.billing_account_id
2626
parent = var.project_config.parent

ai-apps-conversational/1-apps/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
module "ds-bucket" {
16-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/gcs?ref=v49.0.0"
16+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/gcs?ref=v50.0.0"
1717
project_id = var.project_config.id
1818
prefix = var.project_config.prefix
1919
name = "${var.name}-ds"
@@ -23,7 +23,7 @@ module "ds-bucket" {
2323
}
2424

2525
module "build-bucket" {
26-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/gcs?ref=v49.0.0"
26+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/gcs?ref=v50.0.0"
2727
project_id = var.project_config.id
2828
prefix = var.project_config.prefix
2929
name = "${var.name}-build"
@@ -35,7 +35,7 @@ module "build-bucket" {
3535
# See https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/blob/master/modules/ai-applications/variables.tf
3636
# to learn how to customize this.
3737
module "dialogflow" {
38-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/ai-applications?ref=v49.0.0"
38+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/ai-applications?ref=v50.0.0"
3939
name = var.name
4040
project_id = var.project_config.id
4141
location = var.region_ai_applications

ai-apps-search/0-projects/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020
}
2121

2222
module "projects" {
23-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v49.0.0"
23+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v50.0.0"
2424
data_defaults = {
2525
billing_account = var.project_config.billing_account_id
2626
parent = var.project_config.parent

ai-apps-search/1-apps/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# See https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/blob/master/modules/ai-applications/variables.tf
1616
# to learn how to customize this.
1717
module "ai-apps" {
18-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/ai-applications?ref=v49.0.0"
18+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/ai-applications?ref=v50.0.0"
1919
name = var.name
2020
project_id = var.project_config.id
2121
location = var.region_ai_applications

cloud-run-rag-alloydb/0-projects/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ locals {
2020
}
2121

2222
module "projects" {
23-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v49.0.0"
23+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/project-factory?ref=v50.0.0"
2424
data_defaults = {
2525
billing_account = var.project_config.billing_account_id
2626
parent = var.project_config.parent

cloud-run-rag-alloydb/1-apps/database.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ locals {
1717
}
1818

1919
module "bigquery-dataset" {
20-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/bigquery-dataset?ref=v49.0.0"
20+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/bigquery-dataset?ref=v50.0.0"
2121
project_id = var.project_config.id
2222
id = local.bigquery_id
2323
tables = {
@@ -49,7 +49,7 @@ data "google_secret_manager_secret_version_access" "alloydb_initial_password" {
4949
*/
5050

5151
module "alloydb" {
52-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/alloydb?ref=v49.0.0"
52+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/alloydb?ref=v50.0.0"
5353
project_id = var.project_config.id
5454
project_number = var.project_config.number
5555
cluster_name = "alloydb"
@@ -107,7 +107,7 @@ resource "google_compute_forwarding_rule" "psc_consumer_fwd_rule" {
107107
}
108108

109109
module "psc_consumer_dns_zone" {
110-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/dns?ref=v49.0.0"
110+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/dns?ref=v50.0.0"
111111
project_id = var.project_config.id
112112
name = "${var.name}-alloydb"
113113
description = "DNS Zone for the PSC access to AlloyDB"

cloud-run-rag-alloydb/1-apps/frontend.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
module "cloud_run_frontend" {
16-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/cloud-run-v2?ref=v49.0.0"
16+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/cloud-run-v2?ref=v50.0.0"
1717
project_id = var.project_config.id
1818
type = "SERVICE"
1919
name = "${var.name}-frontend"

cloud-run-rag-alloydb/1-apps/ingestion.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
module "cloud_run_ingestion" {
16-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/cloud-run-v2?ref=v49.0.0"
16+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/cloud-run-v2?ref=v50.0.0"
1717
project_id = var.project_config.id
1818
type = "JOB"
1919
name = "${var.name}-ingestion"

cloud-run-rag-alloydb/1-apps/lb-ext.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ resource "google_compute_global_address" "address_external" {
6666

6767
module "lb_external_redirect" {
6868
count = var.lbs_config.external.enable ? 1 : 0
69-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/net-lb-app-ext?ref=v49.0.0"
69+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/net-lb-app-ext?ref=v50.0.0"
7070
project_id = var.project_config.id
7171
name = "${var.name}-redirect"
7272
use_classic_version = false
@@ -90,7 +90,7 @@ module "lb_external_redirect" {
9090

9191
module "lb_external" {
9292
count = var.lbs_config.external.enable ? 1 : 0
93-
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/net-lb-app-ext?ref=v49.0.0"
93+
source = "github.com/GoogleCloudPlatform/cloud-foundation-fabric//modules/net-lb-app-ext?ref=v50.0.0"
9494
project_id = var.project_config.id
9595
name = "${var.name}-external"
9696
use_classic_version = false

0 commit comments

Comments
 (0)