From c2056602e3c4ad2347c8dcfba4a3bb40b9334ed6 Mon Sep 17 00:00:00 2001 From: Natalia Strelkova Date: Thu, 6 Oct 2022 09:25:38 +0000 Subject: [PATCH] principals: rights list --- blueprints/third-party-solutions/wordpress/cloudrun/README.md | 2 +- .../third-party-solutions/wordpress/cloudrun/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/third-party-solutions/wordpress/cloudrun/README.md b/blueprints/third-party-solutions/wordpress/cloudrun/README.md index cc724508..e5b2cfd5 100644 --- a/blueprints/third-party-solutions/wordpress/cloudrun/README.md +++ b/blueprints/third-party-solutions/wordpress/cloudrun/README.md @@ -113,7 +113,7 @@ The above command will delete the associated resources so there will be no billa | [cloudsql_password](variables.tf#L24) | CloudSQL password (will be randomly generated by default) | string | | null | | [ip_ranges](variables.tf#L31) | CIDR blocks: VPC serverless connector, Private Service Access(PSA) for CloudSQL, CloudSQL VPC | object({…}) | | {…} | | [prefix](variables.tf#L45) | Unique prefix used for resource names. Not used for project if 'project_create' is null. | string | | "" | -| [principals](variables.tf#L51) | List of emails of users to give rights to, eg 'user@domain.com'. | list(string) | | [] | +| [principals](variables.tf#L51) | List of users to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator), eg 'user@domain.com'. | list(string) | | [] | | [project_create](variables.tf#L57) | Provide values if project creation is needed, uses existing project if null. Parent is in 'folders/nnn' or 'organizations/nnn' format. | object({…}) | | null | | [region](variables.tf#L71) | Region for the created resources | string | | "europe-west4" | | [wordpress_password](variables.tf#L88) | Password for the Wordpress user (will be randomly generated by default) | string | | null | diff --git a/blueprints/third-party-solutions/wordpress/cloudrun/variables.tf b/blueprints/third-party-solutions/wordpress/cloudrun/variables.tf index df1891e0..c0ea7f4b 100644 --- a/blueprints/third-party-solutions/wordpress/cloudrun/variables.tf +++ b/blueprints/third-party-solutions/wordpress/cloudrun/variables.tf @@ -49,7 +49,7 @@ variable "prefix" { } variable "principals" { - description = "List of emails of users to give rights to, eg 'user@domain.com'." + description = "List of users to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator), eg 'user@domain.com'." type = list(string) default = [] }