Skip to content

Commit db4e9e8

Browse files
harshit777Junli WangHarshit-Gupta2
authored
Changes doc (IBM-Cloud#3343)
* fix: delete topic does not fail when topic does not exist (IBM-Cloud#2976) * delete topic does not fail when topic does not exists * update deps * fix: delete topic does not fail when topic does not exist (IBM-Cloud#2976) * delete topic does not fail when topic does not exists * update deps * Docs changed for maintaning consistency Co-authored-by: Junli Wang <[email protected]> Co-authored-by: Harshit-Gupta2 <[email protected]>
1 parent 75a0a19 commit db4e9e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

website/docs/r/kms_key_policies.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "ibm_kms_key" "key" {
2727
standard_key = false
2828
}
2929
30-
resource "ibm_kms_key_policies" "keyPolicy" {
30+
resource "ibm_kms_key_policies" "key_policy" {
3131
instance_id = ibm_resource_instance.kms_instance.guid
3232
key_id = ibm_kms_key.key.key_id
3333
rotation {

website/docs/r/kms_key_rings.html.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ resource "ibm_resource_instance" "kms_instance" {
2020
plan = "tiered-pricing"
2121
location = "us-south"
2222
}
23-
resource "ibm_kms_key_rings" "keyRing" {
23+
resource "ibm_kms_key_rings" "key_ring" {
2424
instance_id = ibm_resource_instance.kms_instance.guid
2525
key_ring_id = "key-ring-id"
2626
}
2727
resource "ibm_kms_key" "key" {
2828
instance_id = ibm_resource_instance.kp_instance.guid
2929
key_name = "key"
30-
key_ring_id = ibm_kms_key_rings.keyRing.key_ring_id
30+
key_ring_id = ibm_kms_key_rings.key_ring.key_ring_id
3131
standard_key = false
3232
payload = "aW1wb3J0ZWQucGF5bG9hZA=="
3333
}

0 commit comments

Comments
 (0)