Skip to content

Commit

Permalink
fix: Allow any type as inputs to components per default (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarm committed Sep 23, 2024
1 parent 7136633 commit b2699d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/schema/stacks/1.9/component_block.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func componentBlockSchema() *schema.BlockSchema {
IsOptional: true,
Constraint: schema.Map{
Name: "map of input references",
Elem: schema.Reference{OfScopeId: refscope.ModuleScope}, // TODO: This should be refscope.InputScope ?
Elem: schema.AnyExpression{OfType: cty.DynamicPseudoType},
},
},
"version": {
Expand Down

0 comments on commit b2699d0

Please sign in to comment.