Skip to content

Commit

Permalink
feat: support description attribute for orchestrate rule (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarm committed Sep 23, 2024
1 parent d31ea79 commit 02d16a7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/schema/stacks/1.9/orchestrate_block.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ func orchestrateBlockSchema() *schema.BlockSchema {
},
},
},
Attributes: map[string]*schema.AttributeSchema{
"description": {
Constraint: schema.LiteralType{Type: cty.String},
IsOptional: true,
Description: lang.PlainText("Human-readable description of the orchestration rule (for documentation and UI)"),
},
},
},
}
}

0 comments on commit 02d16a7

Please sign in to comment.