You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"vault_aws_auth_backend_cert" {
source="./modules/vault/r/vault_aws_auth_backend_cert"# aws_public_cert - (required) is a type of stringaws_public_cert=null# backend - (optional) is a type of stringbackend=null# cert_name - (required) is a type of stringcert_name=null# type - (optional) is a type of stringtype=null
}
variable"aws_public_cert" {
description="(required) - Base64 encoded AWS Public key required to verify PKCS7 signature of the EC2 instance metadata."type=string
}
variable"backend" {
description="(optional) - Unique name of the auth backend to configure."type=stringdefault=null
}
variable"cert_name" {
description="(required) - Name of the certificate to configure."type=string
}
variable"type" {
description="(optional) - The type of document that can be verified using the certificate. Must be either \"pkcs7\" or \"identity\"."type=stringdefault=null
}
resource"vault_aws_auth_backend_cert""this" {
# aws_public_cert - (required) is a type of stringaws_public_cert=var.aws_public_cert# backend - (optional) is a type of stringbackend=var.backend# cert_name - (required) is a type of stringcert_name=var.cert_name# type - (optional) is a type of stringtype=var.type
}