Skip to content

Commit

Permalink
Fix map in Random provider in SSLCert OiCS example. (hashicorp#373)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @rileykarson
  • Loading branch information
modular-magician authored and rileykarson committed Jan 24, 2019
1 parent ebfa460 commit 184ae15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ resource "random_id" "certificate" {
prefix = "my-certificate-"
# For security, do not expose raw certificate values in the output
keepers {
keepers = {
private_key = "${base64sha256(file("test-fixtures/ssl_cert/test.key"))}"
certificate = "${base64sha256(file("test-fixtures/ssl_cert/test.crt"))}"
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/compute_ssl_certificate.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ resource "random_id" "certificate" {
prefix = "my-certificate-"
# For security, do not expose raw certificate values in the output
keepers {
keepers = {
private_key = "${base64sha256(file("path/to/private.key"))}"
certificate = "${base64sha256(file("path/to/certificate.crt"))}"
}
Expand Down

0 comments on commit 184ae15

Please sign in to comment.