Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
simonebruzzechesse committed Sep 6, 2023
1 parent f1a2d99 commit 12d4880
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blueprints/third-party-solutions/phpipam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ billable charges made afterwards.
|---|---|:---:|:---:|:---:|
| [prefix](variables.tf#L117) | Prefix used for resource names. | <code>string</code> || |
| [project_id](variables.tf#L136) | Project id, references existing project if `project_create` is null. | <code>string</code> || |
| [admin_principals](variables.tf#L19) | Map of identities to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator) | <code title="object&#40;&#123;&#10; groups &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10; service_accounts &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10; users &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10;&#125;&#41;">object&#40;&#123;&#8230;&#125;&#41;</code> | | <code title="&#123;&#10; groups &#61; &#91;&#93;&#10; service_accounts &#61; &#91;&#93;&#10; users &#61; &#91;&#93;&#10;&#125;">&#123;&#8230;&#125;</code> |
| [admin_principals](variables.tf#L19) | Map of identities to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator). | <code title="object&#40;&#123;&#10; groups &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10; service_accounts &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10; users &#61; optional&#40;list&#40;string&#41;, &#91;&#93;&#41;&#10;&#125;&#41;">object&#40;&#123;&#8230;&#125;&#41;</code> | | <code title="&#123;&#10; groups &#61; &#91;&#93;&#10; service_accounts &#61; &#91;&#93;&#10; users &#61; &#91;&#93;&#10;&#125;">&#123;&#8230;&#125;</code> |
| [cloud_run_invoker](variables.tf#L33) | IAM member authorized to access the end-point (for example, 'user:YOUR_IAM_USER' for only you or 'allUsers' for everyone). | <code>string</code> | | <code>&#34;allUsers&#34;</code> |
| [cloudsql_password](variables.tf#L39) | CloudSQL password (will be randomly generated by default). | <code>string</code> | | <code>null</code> |
| [connector](variables.tf#L45) | Existing VPC serverless connector to use if not creating a new one. | <code>string</code> | | <code>null</code> |
Expand Down
2 changes: 1 addition & 1 deletion blueprints/third-party-solutions/phpipam/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Documentation: https://cloud.google.com/run/docs/securing/managing-access#making_a_service_public

variable "admin_principals" {
description = "Map of identities to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator)"
description = "Map of identities to give rights to (CloudSQL admin, client and instanceUser, Logging admin, Service Account User and TokenCreator)."
type = object({
groups = optional(list(string), [])
service_accounts = optional(list(string), [])
Expand Down

0 comments on commit 12d4880

Please sign in to comment.