Skip to content

Commit

Permalink
Changes services accounts/identities description (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
amandakarina authored Oct 1, 2022
1 parent be821d9 commit eaeead1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/secure-cloud-run-net/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |

<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Expand Down
6 changes: 3 additions & 3 deletions modules/secure-cloud-run-net/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit eaeead1

Please sign in to comment.