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
@@ -178,7 +176,7 @@ For more info, see [Understanding user roles and resources](https://cloud.ibm.co
178
176
| <aname="input_key_protect_instance_name"></a> [key\_protect\_instance\_name](#input\_key\_protect\_instance\_name)| The name to give the Key Protect instance that will be provisioned by this module. Only used if 'create\_key\_protect\_instance' is true. |`string`|`"key-protect"`| no |
179
177
| <aname="input_key_protect_plan"></a> [key\_protect\_plan](#input\_key\_protect\_plan)| Plan for the Key Protect instance. Currently only 'tiered-pricing' is supported. Only used if 'create\_key\_protect\_instance' is true. |`string`|`"tiered-pricing"`| no |
180
178
| <aname="input_key_ring_endpoint_type"></a> [key\_ring\_endpoint\_type](#input\_key\_ring\_endpoint\_type)| The type of endpoint to be used for creating key rings. Accepts 'public' or 'private' |`string`|`"public"`| no |
181
-
| <aname="input_keys"></a> [keys](#input\_keys)| A list of objects which contain the key ring name, a flag indicating if this key ring already exists, and a flag to enable force deletion of the key ring. In addition, this object contains a list of keys with all of the information on the keys to be created in that key ring. | <pre>list(object({<br/> key_ring_name = string<br/> existing_key_ring = optional(bool, false)<br/> force_delete_key_ring = optional(bool, false)<br/> keys = list(object({<br/> key_name = string<br/> standard_key = optional(bool, false)<br/> rotation_interval_month = optional(number, 1)<br/> dual_auth_delete_enabled = optional(bool, false)<br/> force_delete = optional(bool, false)<br/> }))<br/> }))</pre> |`[]`| no |
179
+
| <aname="input_keys"></a> [keys](#input\_keys)| A list of objects which contain the key ring name, a flag indicating if this key ring already exists, and a flag to enable force deletion of the key ring. In addition, this object contains a list of keys with all of the information on the keys to be created in that key ring. | <pre>list(object({<br/> key_ring_name = string<br/> existing_key_ring = optional(bool, false)<br/> keys = list(object({<br/> key_name = string<br/> standard_key = optional(bool, false)<br/> rotation_interval_month = optional(number, 1)<br/> dual_auth_delete_enabled = optional(bool, false)<br/> force_delete = optional(bool, false)<br/> }))<br/> }))</pre> |`[]`| no |
182
180
| <aname="input_region"></a> [region](#input\_region)| The IBM Cloud region where all resources will be provisioned. |`string`| n/a | yes |
183
181
| <aname="input_resource_group_id"></a> [resource\_group\_id](#input\_resource\_group\_id)| The ID of the Resource Group to provision the Key Protect instance in. Not required if 'create\_key\_protect\_instance' is false. |`string`|`null`| no |
184
182
| <aname="input_resource_tags"></a> [resource\_tags](#input\_resource\_tags)| Optional list of tags to be added to the Key Protect instance. Only used if 'create\_key\_protect\_instance' is true. |`list(string)`|`[]`| no |
Copy file name to clipboardExpand all lines: solutions/standard/DA-keys.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
When you add a key management service from the IBM Cloud catalog to an IBM Cloud Projects service, you can configure key rings and keys. In the edit mode for the projects configuration, select the Configure panel and then click the optional tab.
4
4
5
-
In the configuration, specify the name of the key ring, whether the key ring exists, and whether to force the deletion of the key. The object also contains a list of keys with all the information about the keys that you want to create in that key ring.
5
+
In the configuration, specify the name of the key ring and whether the key ring exists. The object also contains a list of keys with all the information about the keys that you want to create in that key ring.
6
6
7
7
To enter a custom value, use the edit action to open the "Edit Array" panel. Add the KMS key ring and key configurations to the array here.
8
8
@@ -12,7 +12,6 @@ To enter a custom value, use the edit action to open the "Edit Array" panel. Add
12
12
13
13
-`key_ring_name` (required): A unique human-readable name that identifies this key ring. To protect your privacy, do not use personal data, such as your name or location. The key ring name can be between 2 and 100 characters.
14
14
-`existing_key_ring` (optional, default = `false`): Set to true if the key ring already exists and keys should be added to it.
15
-
-`force_delete_key_ring` (optional, default = `true`): Whether to force delete the key ring with a destroy command or when the projects configuration is removed. When `true` this force deletes the key ring in the event that it contains keys in the `Destroyed` state, see [Deleting key rings](https://cloud.ibm.com/docs/key-protect?topic=key-protect-grouping-keys&interface=api#delete-key-ring-api).
16
15
17
16
### Key options
18
17
@@ -28,7 +27,6 @@ The following example includes all the configuration options for two key rings.
28
27
{
29
28
"key_ring_name": "da-ring-1",
30
29
"existing_key_ring": false,
31
-
"force_delete_key_ring": true,
32
30
"keys": [
33
31
{
34
32
"key_name": "da-key-1-1",
@@ -49,7 +47,6 @@ The following example includes all the configuration options for two key rings.
0 commit comments