Skip to content

Commit

Permalink
Changes doc (#3343)
Browse files Browse the repository at this point in the history
* fix: delete topic does not fail when topic does not exist (#2976)

* delete topic does not fail when topic does not exists

* update deps

* fix: delete topic does not fail when topic does not exist (#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]>
  • Loading branch information
3 people authored Dec 2, 2021
1 parent 75a0a19 commit db4e9e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion website/docs/r/kms_key_policies.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "ibm_kms_key" "key" {
standard_key = false
}
resource "ibm_kms_key_policies" "keyPolicy" {
resource "ibm_kms_key_policies" "key_policy" {
instance_id = ibm_resource_instance.kms_instance.guid
key_id = ibm_kms_key.key.key_id
rotation {
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/kms_key_rings.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ resource "ibm_resource_instance" "kms_instance" {
plan = "tiered-pricing"
location = "us-south"
}
resource "ibm_kms_key_rings" "keyRing" {
resource "ibm_kms_key_rings" "key_ring" {
instance_id = ibm_resource_instance.kms_instance.guid
key_ring_id = "key-ring-id"
}
resource "ibm_kms_key" "key" {
instance_id = ibm_resource_instance.kp_instance.guid
key_name = "key"
key_ring_id = ibm_kms_key_rings.keyRing.key_ring_id
key_ring_id = ibm_kms_key_rings.key_ring.key_ring_id
standard_key = false
payload = "aW1wb3J0ZWQucGF5bG9hZA=="
}
Expand Down

0 comments on commit db4e9e8

Please sign in to comment.