You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <aname="input_activate_apis"></a> [activate\_apis](#input\_activate\_apis)| List of Google APIs activated in new or existing project. |`list(string)`| <pre>[<br> "compute.googleapis.com",<br> "container.googleapis.com"<br>]</pre> | no |
69
78
| <aname="input_additional_node_pool_oauth_scopes"></a> [additional\_node\_pool\_oauth\_scopes](#input\_additional\_node\_pool\_oauth\_scopes)| Node pool oauth scopes added to specified node pool in addition to default\_node\_pool\_oauth\_scopes. It's referenced by node\_pool `name`|`map(list(string))`| <pre>{<br> "default-node-pool": []<br>}</pre> | no |
70
-
| <aname="input_billing_account"></a> [billing\_account](#input\_billing\_account)| The billing account to witch the new project should be connected. Required if `create_project` set to `true`. |`string`|`""`| no |
79
+
| <aname="input_billing_account"></a> [billing\_account](#input\_billing\_account)|YOU NEED TO HAVE PERMISSION TO BILLING ACCOUNT, The billing account to witch the new project should be connected. Required if `create_project` set to `true`. |`string`|`""`| no |
71
80
| <aname="input_create_project"></a> [create\_project](#input\_create\_project)| Defines if create the project. All resources are created this project. If `false` - the project\_id is required. |`bool`|`false`| no |
72
81
| <aname="input_default_node_pools_oauth_scopes"></a> [default\_node\_pools\_oauth\_scopes](#input\_default\_node\_pools\_oauth\_scopes)| Default node pool oauth scopes added to all node pools |`list(string)`| <pre>[<br> "https://www.googleapis.com/auth/devstorage.read_only",<br> "https://www.googleapis.com/auth/cloud-platform",<br> "https://www.googleapis.com/auth/logging.write",<br> "https://www.googleapis.com/auth/monitoring",<br> "https://www.googleapis.com/auth/compute"<br>]</pre> | no |
73
82
| <aname="input_default_pool_machine_type"></a> [default\_pool\_machine\_type](#input\_default\_pool\_machine\_type)| In some cases the GKE won't be created unless the default pool uses specific machine type (for example confidential nodes) so we have to set the type even if the default pool is removed. |`string`|`"e2-small"`| no |
Copy file name to clipboardExpand all lines: variables.tf
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ variable "create_project" {
6
6
variable"billing_account" {
7
7
type=string
8
8
default=""
9
-
description="The billing account to witch the new project should be connected. Required if `create_project` set to `true`."
9
+
description="YOU NEED TO HAVE PERMISSION TO BILLING ACCOUNT, The billing account to witch the new project should be connected. Required if `create_project` set to `true`."
10
10
}
11
11
variable"org_id" {
12
12
type=string
@@ -21,20 +21,36 @@ variable "project_id" {
21
21
type=string
22
22
default=""
23
23
description="Existing project id. Required if `create_project` set to `false`"
0 commit comments