Skip to content

Commit 74c1d42

Browse files
fix: default to public
1 parent a5dc287 commit 74c1d42

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ No modules.
155155
| Name | Description | Type | Default | Required |
156156
|------|-------------|------|---------|:--------:|
157157
| <a name="input_dual_auth_delete_enabled"></a> [dual\_auth\_delete\_enabled](#input\_dual\_auth\_delete\_enabled) | Set as true to enable Dual Auth Delete | `bool` | `false` | no |
158-
| <a name="input_endpoint_type"></a> [endpoint\_type](#input\_endpoint\_type) | Endpoint to use when creating the Key | `string` | `"private"` | no |
158+
| <a name="input_endpoint_type"></a> [endpoint\_type](#input\_endpoint\_type) | Endpoint to use when creating the Key | `string` | `"public"` | no |
159159
| <a name="input_force_delete"></a> [force\_delete](#input\_force\_delete) | Set as true to enable forcing deletion even if key is in use | `bool` | `false` | no |
160160
| <a name="input_key_name"></a> [key\_name](#input\_key\_name) | Name to give the key | `string` | n/a | yes |
161161
| <a name="input_key_protect_instance_id"></a> [key\_protect\_instance\_id](#input\_key\_protect\_instance\_id) | ID of Key Protect Instance | `string` | n/a | yes |

module-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"name": "endpoint_type",
1616
"type": "string",
1717
"description": "Endpoint to use when creating the Key",
18-
"default": "private",
18+
"default": "public",
1919
"source": [
2020
"ibm_kms_key.key.endpoint_type",
2121
"ibm_kms_key_policies.root_key_policy.endpoint_type",

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ variable "standard_key" {
2727
variable "endpoint_type" {
2828
type = string
2929
description = "Endpoint to use when creating the Key"
30-
default = "private"
30+
default = "public"
3131

3232
validation {
3333
condition = can(regex("public|private", var.endpoint_type))

0 commit comments

Comments
 (0)