From eaeead189612f134130139a8072b7aa4a2561706 Mon Sep 17 00:00:00 2001 From: Amanda Karina Lopes de Oliveira Date: Fri, 30 Sep 2022 23:49:31 -0300 Subject: [PATCH] Changes services accounts/identities description (#64) --- modules/secure-cloud-run-net/README.md | 6 +++--- modules/secure-cloud-run-net/outputs.tf | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/secure-cloud-run-net/README.md b/modules/secure-cloud-run-net/README.md index 35ec0f1a..1b97baf1 100644 --- a/modules/secure-cloud-run-net/README.md +++ b/modules/secure-cloud-run-net/README.md @@ -57,10 +57,10 @@ module "cloud_run_network" { | Name | Description | |------|-------------| -| cloud\_services\_sa | Service Account for Cloud Run Service. | +| cloud\_services\_sa | Google APIs service agent. | | connector\_id | VPC serverless connector ID. | -| gca\_vpcaccess\_sa | Service Account for VPC Access. | -| run\_identity\_services\_sa | Service Identity to run services. | +| gca\_vpcaccess\_sa | Google APIs Service Agent for VPC Access. | +| run\_identity\_services\_sa | Google APIs Service Agent to Cloud Run Service. | | subnet\_name | The name of the sub-network used to create VPC Connector. | diff --git a/modules/secure-cloud-run-net/outputs.tf b/modules/secure-cloud-run-net/outputs.tf index 85de1930..4e2cdb69 100644 --- a/modules/secure-cloud-run-net/outputs.tf +++ b/modules/secure-cloud-run-net/outputs.tf @@ -21,17 +21,17 @@ output "connector_id" { output "gca_vpcaccess_sa" { value = google_project_service_identity.vpcaccess_identity_sa.email - description = "Service Account for VPC Access." + description = "Google APIs Service Agent for VPC Access." } output "cloud_services_sa" { value = "${data.google_project.serverless_project_id.number}@cloudservices.gserviceaccount.com" - description = "Service Account for Cloud Run Service." + description = "Google APIs service agent." } output "run_identity_services_sa" { value = google_project_service_identity.run_identity_sa.email - description = "Service Identity to run services." + description = "Google APIs Service Agent to Cloud Run Service." } output "subnet_name" {