Skip to content

Commit

Permalink
fixing lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tvo0813 committed Jan 3, 2025
1 parent 9cddbed commit 65d40f4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions enos/modules/verify_secrets_engines/modules/create/pki.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@

locals {
// Variables
pki_mount = "pki" # secret
pki_issuer_name = "issuer"
pki_common_name = "common"
pki_default_ttl = "72h"
pki_test_dir = "tmp-test-results"
pki_mount = "pki" # secret
pki_issuer_name = "issuer"
pki_common_name = "common"
pki_default_ttl = "72h"
pki_test_dir = "tmp-test-results"

// Output
pki_output = {
common_name = local.pki_common_name
issuer_name = local.pki_issuer_name
mount = local.pki_mount
ttl = local.pki_default_ttl
test_dir = local.pki_test_dir
common_name = local.pki_common_name
issuer_name = local.pki_issuer_name
mount = local.pki_mount
ttl = local.pki_default_ttl
test_dir = local.pki_test_dir
}

}
Expand Down

0 comments on commit 65d40f4

Please sign in to comment.