Skip to content

Commit 8739715

Browse files
authored
Merge pull request #17 from hashicorp/mpminardi/vault-custom-cert
Add oidc_discovery_ca_pem guidance
2 parents ae98071 + e7e5c80 commit 8739715

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

vault/vault.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ resource "vault_jwt_auth_backend" "tfc_jwt" {
1414
type = "jwt"
1515
oidc_discovery_url = "https://${var.tfc_hostname}"
1616
bound_issuer = "https://${var.tfc_hostname}"
17+
18+
# If you are using TFE with custom / self-signed CA certs you may need to provide them via the
19+
# below argument as a string in PEM format.
20+
#
21+
# oidc_discovery_ca_pem = "my CA certs as PEM"
1722
}
1823

1924
# Creates a role for the jwt auth backend and uses bound claims

0 commit comments

Comments
 (0)