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_config_maps"></a> [config\_maps](#input\_config\_maps)| A map of code engine config maps to be created. | <pre>map(object({<br> data = map(string)<br> }))</pre> |`{}`| no |
161
-
| <aname="input_domain_mappings"></a> [domain\_mappings](#input\_domain\_mappings)| A map of code engine domain mappings to be created. | <pre>map(object({<br> tls_secret = string # pragma: allowlist secret<br> components = list(object({<br> name = string<br> resource_type = string<br> }))<br> }))</pre> |`{}`| no |
| <aname="input_config_maps"></a> [config\_maps](#input\_config\_maps)| A map of code engine config maps to be created. | <pre>map(object({<br/> data = map(string)<br/> }))</pre> |`{}`| no |
161
+
| <aname="input_domain_mappings"></a> [domain\_mappings](#input\_domain\_mappings)| A map of code engine domain mappings to be created. | <pre>map(object({<br/> tls_secret = string # pragma: allowlist secret<br/> components = list(object({<br/> name = string<br/> resource_type = string<br/> }))<br/> }))</pre> |`{}`| no |
162
162
| <aname="input_existing_project_id"></a> [existing\_project\_id](#input\_existing\_project\_id)| The ID of the existing project to which code engine resources will be added. It is required if var.project\_name is null. |`string`|`null`| no |
163
-
| <a name="input_jobs"></a> [jobs](#input\_jobs) | A map of code engine jobs to be created. | <pre>map(object({<br> image_reference = string<br> image_secret = optional(string)<br> run_env_variables = optional(list(object({<br> type = optional(string)<br> name = optional(string)<br> value = optional(string)<br> prefix = optional(string)<br> key = optional(string)<br> reference = optional(string)<br> })))<br> run_volume_mounts = optional(list(object({<br> mount_path = string<br> reference = string<br> name = optional(string)<br> type = string<br> })))<br> run_arguments = optional(list(string))<br> run_as_user = optional(number)<br> run_commands = optional(list(string))<br> run_mode = optional(string)<br> run_service_account = optional(string)<br> scale_array_spec = optional(string)<br> scale_cpu_limit = optional(string)<br> scale_ephemeral_storage_limit = optional(string)<br> scale_max_execution_time = optional(number)<br> scale_memory_limit = optional(string)<br> scale_retry_limit = optional(number)<br> }))</pre> | `{}` | no |
163
+
| <a name="input_jobs"></a> [jobs](#input\_jobs) | A map of code engine jobs to be created. | <pre>map(object({<br/> image_reference = string<br/> image_secret = optional(string)<br/> run_env_variables = optional(list(object({<br/> type = optional(string)<br/> name = optional(string)<br/> value = optional(string)<br/> prefix = optional(string)<br/> key = optional(string)<br/> reference = optional(string)<br/> })))<br/> run_volume_mounts = optional(list(object({<br/> mount_path = string<br/> reference = string<br/> name = optional(string)<br/> type = string<br/> })))<br/> run_arguments = optional(list(string))<br/> run_as_user = optional(number)<br/> run_commands = optional(list(string))<br/> run_mode = optional(string)<br/> run_service_account = optional(string)<br/> scale_array_spec = optional(string)<br/> scale_cpu_limit = optional(string)<br/> scale_ephemeral_storage_limit = optional(string)<br/> scale_max_execution_time = optional(number)<br/> scale_memory_limit = optional(string)<br/> scale_retry_limit = optional(number)<br/> }))</pre> | `{}` | no |
164
164
| <aname="input_project_name"></a> [project\_name](#input\_project\_name)| The name of the project to which code engine resources will be added. It is required if var.existing\_project\_id is null. |`string`|`null`| no |
165
165
| <aname="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id)| ID of the resource group to use when creating resources. |`string`| n/a | yes |
166
-
| <aname="input_secrets"></a> [secrets](#input\_secrets)| A map of code engine secrets to be created. | <pre>map(object({<br> format = string<br> data = map(string)<br> # Issue with provider, service_access is not supported at the moment. https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5232<br> # service_access = optional(list(object({<br> # resource_key = list(object({<br> # id = optional(string)<br> # }))<br> # role = list(object({<br> # crn = optional(string)<br> # }))<br> # service_instance = list(object({<br> # id = optional(string)<br> # }))<br> # })))<br> }))</pre> |`{}`| no |
166
+
| <aname="input_secrets"></a> [secrets](#input\_secrets)| A map of code engine secrets to be created. | <pre>map(object({<br/> format = string<br/> data = map(string)<br/> # Issue with provider, service_access is not supported at the moment. https://github.com/IBM-Cloud/terraform-provider-ibm/issues/5232<br/> # service_access = optional(list(object({<br/> # resource_key = list(object({<br/> # id = optional(string)<br/> # }))<br/> # role = list(object({<br/> # crn = optional(string)<br/> # }))<br/> # service_instance = list(object({<br/> # id = optional(string)<br/> # }))<br/> # })))<br/> }))</pre> |`{}`| no |
Copy file name to clipboardExpand all lines: modules/app/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -64,9 +64,9 @@ No modules.
64
64
| <aname="input_run_arguments"></a> [run\_arguments](#input\_run\_arguments)| Arguments for the app that are passed to start the container. |`list(string)`|`[]`| no |
65
65
| <aname="input_run_as_user"></a> [run\_as\_user](#input\_run\_as\_user)| The user ID (UID) to run the app. |`number`|`null`| no |
66
66
| <aname="input_run_commands"></a> [run\_commands](#input\_run\_commands)| Commands for the app that are passed to start the container. |`list(string)`|`[]`| no |
67
-
| <aname="input_run_env_variables"></a> [run\_env\_variables](#input\_run\_env\_variables)| References to config maps, secrets or a literal values that are exposed as environment variables within the running application. | <pre>list(object({<br> type = optional(string)<br> name = optional(string)<br> value = optional(string)<br> prefix = optional(string)<br> key = optional(string)<br> reference = optional(string)<br> }))</pre> |`[]`| no |
67
+
| <aname="input_run_env_variables"></a> [run\_env\_variables](#input\_run\_env\_variables)| References to config maps, secrets or a literal values that are exposed as environment variables within the running application. | <pre>list(object({<br/> type = optional(string)<br/> name = optional(string)<br/> value = optional(string)<br/> prefix = optional(string)<br/> key = optional(string)<br/> reference = optional(string)<br/> }))</pre> |`[]`| no |
68
68
| <aname="input_run_service_account"></a> [run\_service\_account](#input\_run\_service\_account)| The name of the service account. |`string`|`"default"`| no |
69
-
| <aname="input_run_volume_mounts"></a> [run\_volume\_mounts](#input\_run\_volume\_mounts)| Optional mounts of config maps or a secrets. | <pre>list(object({<br> mount_path = string<br> reference = string<br> name = optional(string)<br> type = string<br> }))</pre> |`[]`| no |
69
+
| <aname="input_run_volume_mounts"></a> [run\_volume\_mounts](#input\_run\_volume\_mounts)| Optional mounts of config maps or a secrets. | <pre>list(object({<br/> mount_path = string<br/> reference = string<br/> name = optional(string)<br/> type = string<br/> }))</pre> |`[]`| no |
70
70
| <aname="input_scale_concurrency"></a> [scale\_concurrency](#input\_scale\_concurrency)| The maximum number of requests that can be processed concurrently per instance. |`number`|`100`| no |
71
71
| <aname="input_scale_concurrency_target"></a> [scale\_concurrency\_target](#input\_scale\_concurrency\_target)| The threshold of concurrent requests per instance at which one or more additional instances are created. |`number`|`null`| no |
72
72
| <aname="input_scale_cpu_limit"></a> [scale\_cpu\_limit](#input\_scale\_cpu\_limit)| The number of CPU set for the instance of the app. |`string`|`"1"`| no |
| <aname="input_components"></a> [components](#input\_components)| A reference to another component. | <pre>list(object({<br> name = string<br> resource_type = string<br> }))</pre> | n/a | yes |
57
+
| <aname="input_components"></a> [components](#input\_components)| A reference to another component. | <pre>list(object({<br/> name = string<br/> resource_type = string<br/> }))</pre> | n/a | yes |
58
58
| <aname="input_prefix"></a> [prefix](#input\_prefix)| Value that is set as prefix in the component that is bound. |`string`| n/a | yes |
59
59
| <aname="input_project_id"></a> [project\_id](#input\_project\_id)| The ID of the project where binding will be created. |`string`| n/a | yes |
60
60
| <aname="input_secret_name"></a> [secret\_name](#input\_secret\_name)| The service access secret that is binding to a component. |`string`| n/a | yes |
| <aname="input_components"></a> [components](#input\_components)| A reference to another component. | <pre>list(object({<br> name = string<br> resource_type = string<br> }))</pre> | n/a | yes |
57
+
| <aname="input_components"></a> [components](#input\_components)| A reference to another component. | <pre>list(object({<br/> name = string<br/> resource_type = string<br/> }))</pre> | n/a | yes |
58
58
| <aname="input_name"></a> [name](#input\_name)| The name of the domain mapping. |`string`| n/a | yes |
59
59
| <aname="input_project_id"></a> [project\_id](#input\_project\_id)| The ID of the project where domain mapping will be created. |`string`| n/a | yes |
60
60
| <aname="input_tls_secret"></a> [tls\_secret](#input\_tls\_secret)| The name of the TLS secret that holds the certificate and private key of this domain mapping. |`string`| n/a | yes |
Copy file name to clipboardExpand all lines: modules/job/README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -62,10 +62,10 @@ No modules.
62
62
| <aname="input_run_arguments"></a> [run\_arguments](#input\_run\_arguments)| Arguments for the app that are passed to start the container. |`list(string)`|`[]`| no |
63
63
| <aname="input_run_as_user"></a> [run\_as\_user](#input\_run\_as\_user)| The user ID (UID) to run the app. |`number`|`null`| no |
64
64
| <aname="input_run_commands"></a> [run\_commands](#input\_run\_commands)| Commands for the app that are passed to start the container. |`list(string)`|`[]`| no |
65
-
| <aname="input_run_env_variables"></a> [run\_env\_variables](#input\_run\_env\_variables)| References to config maps, secrets or a literal values that are exposed as environment variables within the running application. | <pre>list(object({<br> type = optional(string)<br> name = optional(string)<br> value = optional(string)<br> prefix = optional(string)<br> key = optional(string)<br> reference = optional(string)<br> }))</pre> |`[]`| no |
65
+
| <aname="input_run_env_variables"></a> [run\_env\_variables](#input\_run\_env\_variables)| References to config maps, secrets or a literal values that are exposed as environment variables within the running application. | <pre>list(object({<br/> type = optional(string)<br/> name = optional(string)<br/> value = optional(string)<br/> prefix = optional(string)<br/> key = optional(string)<br/> reference = optional(string)<br/> }))</pre> |`[]`| no |
66
66
| <aname="input_run_mode"></a> [run\_mode](#input\_run\_mode)| Commands for the app that are passed to start the container. |`string`|`"task"`| no |
67
67
| <aname="input_run_service_account"></a> [run\_service\_account](#input\_run\_service\_account)| The name of the service account. |`string`|`"default"`| no |
68
-
| <aname="input_run_volume_mounts"></a> [run\_volume\_mounts](#input\_run\_volume\_mounts)| Optional mounts of config maps or a secrets. | <pre>list(object({<br> mount_path = string<br> reference = string<br> name = optional(string)<br> type = string<br> }))</pre> |`[]`| no |
68
+
| <aname="input_run_volume_mounts"></a> [run\_volume\_mounts](#input\_run\_volume\_mounts)| Optional mounts of config maps or a secrets. | <pre>list(object({<br/> mount_path = string<br/> reference = string<br/> name = optional(string)<br/> type = string<br/> }))</pre> |`[]`| no |
69
69
| <aname="input_scale_array_spec"></a> [scale\_array\_spec](#input\_scale\_array\_spec)| Define a custom set of array indices as comma-separated list containing single values and hyphen-separated ranges like 5,12-14,23,27. |`string`|`null`| no |
70
70
| <aname="input_scale_cpu_limit"></a> [scale\_cpu\_limit](#input\_scale\_cpu\_limit)| The number of CPU set for the instance of the app. |`string`|`"1"`| no |
71
71
| <aname="input_scale_ephemeral_storage_limit"></a> [scale\_ephemeral\_storage\_limit](#input\_scale\_ephemeral\_storage\_limit)| The amount of ephemeral storage to set for the instance of the app. |`string`|`"400M"`| no |
0 commit comments