File tree Expand file tree Collapse file tree 7 files changed +7
-16
lines changed
Expand file tree Collapse file tree 7 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ You need the following permissions to run this module.
5050| Name | Version |
5151| ------| ---------|
5252| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.0.0 |
53- | <a name =" requirement_ibm " ></a > [ ibm] ( #requirement\_ ibm ) | >= 1.58 .0, < 2.0.0 |
53+ | <a name =" requirement_ibm " ></a > [ ibm] ( #requirement\_ ibm ) | >= 1.69 .0, < 2.0.0 |
5454
5555### Modules
5656
@@ -67,7 +67,6 @@ No modules.
6767| Name | Description | Type | Default | Required |
6868| ------| -------------| ------| ---------| :--------:|
6969| <a name =" input_endpoint_type " ></a > [ endpoint\_ type] ( #input\_ endpoint\_ type ) | The type of endpoint to be used for creating keys. Accepts 'public' or 'private' | ` string ` | ` "public" ` | no |
70- | <a name =" input_force_delete " ></a > [ force\_ delete] ( #input\_ force\_ delete ) | Set to ` true ` if you wish to force delete the kms key rings, else ` false ` . | ` bool ` | ` false ` | no |
7170| <a name =" input_instance_id " ></a > [ instance\_ id] ( #input\_ instance\_ id ) | The KMS instance GUID | ` string ` | n/a | yes |
7271| <a name =" input_key_ring_id " ></a > [ key\_ ring\_ id] ( #input\_ key\_ ring\_ id ) | The ID that identifies the Key Ring. Each ID is unique within the given KMS instance but is not reserved across the KMS service | ` string ` | n/a | yes |
7372
Original file line number Diff line number Diff line change 33# #############################################################################
44
55module "kms_key_ring" {
6- source = " ../.."
7- instance_id = var. existing_kms_instance_guid
8- key_ring_id = " ${ var . prefix } -key-ring"
9- force_delete = true # Setting it to true for testing purpose
6+ source = " ../.."
7+ instance_id = var. existing_kms_instance_guid
8+ key_ring_id = " ${ var . prefix } -key-ring"
109}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 # Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
55 ibm = {
66 source = " IBM-Cloud/ibm"
7- version = " 1.58 .0"
7+ version = " 1.69 .0"
88 }
99 }
1010}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 # Pin to the lowest provider version of the range defined in the main module's version.tf to ensure lowest version still works
55 ibm = {
66 source = " IBM-Cloud/ibm"
7- version = " >= 1.58 .0"
7+ version = " >= 1.69 .0"
88 }
99 }
1010}
Original file line number Diff line number Diff line change @@ -6,5 +6,4 @@ resource "ibm_kms_key_rings" "key_ring" {
66 endpoint_type = var. endpoint_type
77 instance_id = var. instance_id
88 key_ring_id = var. key_ring_id
9- force_delete = var. force_delete
109}
Original file line number Diff line number Diff line change @@ -17,12 +17,6 @@ variable "instance_id" {
1717 description = " The KMS instance GUID"
1818}
1919
20- variable "force_delete" {
21- type = bool
22- description = " Set to `true` if you wish to force delete the kms key rings, else `false`."
23- default = false
24- }
25-
2620variable "key_ring_id" {
2721 type = string
2822 description = " The ID that identifies the Key Ring. Each ID is unique within the given KMS instance but is not reserved across the KMS service"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 # Use "greater than or equal to" range in modules
55 ibm = {
66 source = " IBM-Cloud/ibm"
7- version = " >= 1.58 .0, < 2.0.0"
7+ version = " >= 1.69 .0, < 2.0.0"
88 }
99 }
1010}
You can’t perform that action at this time.
0 commit comments