Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preserve original config when expand blocks #3

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func (c *BaseConfig) expandBlock(b Block) ([]Block, error) {
for iterator.Next() {
key, value := iterator.Element()
newBlock := NewHclBlock(hclBlock.Block, hclBlock.wb, NewForEach(key, value))
nb, err := wrapBlock(c, newBlock)
nb, err := wrapBlock(b.Config(), newBlock)
if err != nil {
return nil, err
}
Expand Down
1 change: 1 addition & 0 deletions block.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ type Block interface {
PreConditionCheck(*hcl.EvalContext) ([]PreCondition, error)
AddressLength() int
CanExecutePrePlan() bool
Config() Config
getDownstreams() []Block
getForEach() *ForEach
markExpanded()
Expand Down
2 changes: 2 additions & 0 deletions block_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ func (c customizedStringBlock) String() string {
return c.Input
}

func (c fakeBlock) Config() Config { panic("implement me") }

func (c fakeBlock) Id() string {
panic("implement me")
}
Expand Down
Loading