diff --git a/internal/schema/stacks/1.9/variable_block.go b/internal/schema/stacks/1.9/variable_block.go index 536617b..70797b2 100644 --- a/internal/schema/stacks/1.9/variable_block.go +++ b/internal/schema/stacks/1.9/variable_block.go @@ -42,6 +42,12 @@ func variableBlockSchema() *schema.BlockSchema { IsOptional: true, Description: lang.Markdown("Description to document the purpose of the variable and what value is expected"), }, + "sensitive": { + Constraint: schema.LiteralType{Type: cty.Bool}, + DefaultValue: schema.DefaultValue{Value: cty.False}, + IsOptional: true, + Description: lang.Markdown("Whether the variable contains sensitive material and should be hidden in the UI"), + }, "ephemeral": { Constraint: schema.LiteralType{Type: cty.Bool}, IsOptional: true,