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
@@ -140,6 +141,7 @@ You need the following permissions to run this module.
140
141
| <aname="input_region"></a> [region](#input\_region)| The region where the Event Streams are created. |`string`|`"us-south"`| no |
141
142
| <aname="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id)| The resource group ID where the Event Streams instance is created. |`string`| n/a | yes |
142
143
| <aname="input_schemas"></a> [schemas](#input\_schemas)| The list of schema objects. Include the `schema_id` and the `type` and `name` of the schema in the `schema` object. | <pre>list(object(<br/> {<br/> schema_id = string<br/> schema = object({<br/> type = string<br/> name = string<br/> fields = optional(list(object({<br/> name = string<br/> type = string<br/> })))<br/> })<br/> }<br/> ))</pre> |`[]`| no |
144
+
| <aname="input_service_credential_names"></a> [service\_credential\_names](#input\_service\_credential\_names)| The mapping of names and roles for service credentials that you want to create for the Event streams. |`map(string)`|`{}`| no |
143
145
| <aname="input_service_endpoints"></a> [service\_endpoints](#input\_service\_endpoints)| The type of service endpoints. Possible values: 'public', 'private', 'public-and-private'. |`string`|`"public"`| no |
144
146
| <aname="input_skip_iam_authorization_policy"></a> [skip\_iam\_authorization\_policy](#input\_skip\_iam\_authorization\_policy)| Set to true to skip the creation of an IAM authorization policy that permits all Event Streams database instances in the resource group to read the encryption key from the KMS instance. If set to false, pass in a value for the KMS instance in the existing\_kms\_instance\_guid variable. In addition, no policy is created if var.kms\_encryption\_enabled is set to false. |`bool`|`false`| no |
145
147
| <aname="input_storage_size"></a> [storage\_size](#input\_storage\_size)| Storage size of the Event Streams in GB. Applies only to Enterprise plan instances. Possible values: `2048`, `4096`, `6144`, `8192`, `10240`, `12288`. Storage capacity cannot be reduced after the instance is created. When the `throughput` input variable is set to `300`, storage size starts at 4096. When `throughput` is `450`, storage size starts starts at `6144`. |`number`|`"2048"`| no |
@@ -158,6 +160,8 @@ You need the following permissions to run this module.
158
160
| <aname="output_kafka_broker_version"></a> [kafka\_broker\_version](#output\_kafka\_broker\_version)| The Kafka version |
159
161
| <aname="output_kafka_brokers_sasl"></a> [kafka\_brokers\_sasl](#output\_kafka\_brokers\_sasl)| (Array of Strings) Kafka brokers use for interacting with Kafka native API |
160
162
| <aname="output_kafka_http_url"></a> [kafka\_http\_url](#output\_kafka\_http\_url)| The API endpoint to interact with Event Streams REST API |
163
+
| <aname="output_service_credentials_json"></a> [service\_credentials\_json](#output\_service\_credentials\_json)| The service credentials JSON map. |
164
+
| <aname="output_service_credentials_object"></a> [service\_credentials\_object](#output\_service\_credentials\_object)| The service credentials object. |
Copy file name to clipboardExpand all lines: modules/fscloud/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,7 @@ No resources.
33
33
| <aname="input_region"></a> [region](#input\_region)| The region where the Event Streams are created. |`string`|`"us-south"`| no |
34
34
| <aname="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id)| The resource group ID where the Event Streams instance is created. |`string`| n/a | yes |
35
35
| <aname="input_schemas"></a> [schemas](#input\_schemas)| The list of schema objects. Include the `schema_id` and the `type` and `name` of the schema in the `schema` object. | <pre>list(object(<br/> {<br/> schema_id = string<br/> schema = object({<br/> type = string<br/> name = string<br/> fields = optional(list(object({<br/> name = string<br/> type = string<br/> })))<br/> })<br/> }<br/> ))</pre> |`[]`| no |
36
+
| <aname="input_service_credential_names"></a> [service\_credential\_names](#input\_service\_credential\_names)| The mapping of names and roles for service credentials that you want to create for the Event streams. |`map(string)`|`{}`| no |
36
37
| <aname="input_tags"></a> [tags](#input\_tags)| The list of tags associated with the Event Steams instance. |`list(string)`|`[]`| no |
37
38
| <aname="input_topics"></a> [topics](#input\_topics)| The list of topics to apply to resources. Only one topic is allowed for Lite plan instances. | <pre>list(object(<br/> {<br/> name = string<br/> partitions = number<br/> config = object({})<br/> }<br/> ))</pre> |`[]`| no |
38
39
@@ -46,4 +47,6 @@ No resources.
46
47
| <aname="output_kafka_broker_version"></a> [kafka\_broker\_version](#output\_kafka\_broker\_version)| The Kafka version |
47
48
| <aname="output_kafka_brokers_sasl"></a> [kafka\_brokers\_sasl](#output\_kafka\_brokers\_sasl)| (Array of Strings) Kafka brokers use for interacting with Kafka native API |
48
49
| <aname="output_kafka_http_url"></a> [kafka\_http\_url](#output\_kafka\_http\_url)| The API endpoint to interact with Event Streams REST API |
50
+
| <aname="output_service_credentials_json"></a> [service\_credentials\_json](#output\_service\_credentials\_json)| Service credentials json map |
51
+
| <aname="output_service_credentials_object"></a> [service\_credentials\_object](#output\_service\_credentials\_object)| Service credentials object |
0 commit comments