diff --git a/blueprints/third-party-solutions/wordpress/cloudrun/README.md b/blueprints/third-party-solutions/wordpress/cloudrun/README.md
index cc7245086..e5b2cfd55 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 df1891e09..c0ea7f4b5 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 = []
}