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_sts_role" {
source="./modules/vault/r/vault_aws_auth_backend_sts_role"# account_id - (required) is a type of stringaccount_id=null# backend - (optional) is a type of stringbackend=null# sts_role - (required) is a type of stringsts_role=null
}
variable"account_id" {
description="(required) - AWS account ID to be associated with STS role."type=string
}
variable"backend" {
description="(optional) - Unique name of the auth backend to configure."type=stringdefault=null
}
variable"sts_role" {
description="(required) - AWS ARN for STS role to be assumed when interacting with the account specified."type=string
}
resource"vault_aws_auth_backend_sts_role""this" {
# account_id - (required) is a type of stringaccount_id=var.account_id# backend - (optional) is a type of stringbackend=var.backend# sts_role - (required) is a type of stringsts_role=var.sts_role
}