Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inconsistent examples ibm_kms_key_rings example #3279

Closed
shemau opened this issue Oct 30, 2021 · 0 comments 路 Fixed by #3343
Closed

Inconsistent examples ibm_kms_key_rings example #3279

shemau opened this issue Oct 30, 2021 · 0 comments 路 Fixed by #3343
Labels
service/Key Management Services Issues related to Key Management Release

Comments

@shemau
Copy link

shemau commented Oct 30, 2021

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Terraform CLI and Terraform IBM Provider Version

This is an issue with the current documentation. The terraform version and IBM provider version are not relevant

Affected Resource(s)

Terraform Configuration Files

Configuration is not applicable. Only the documentation needs to change.

Debug Output

There is no debug output

Panic Output

There is no panic output

Expected Behavior

Consistent style in examples. Camel case is not used in examples.

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.key_ring.key_ring_id
}

Actual Behavior

resource "ibm_kms_key_rings" "keyRing" {
  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
}

Steps to Reproduce

  1. https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/resources/kms_key_rings

Important Factoids

No important factoids

References

Search did not identify other issues

@kavya498 kavya498 added the service/Key Management Services Issues related to Key Management Release label Nov 2, 2021
@kavya498 kavya498 linked a pull request Nov 30, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
service/Key Management Services Issues related to Key Management Release
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants