Skip to content

Commit

Permalink
core: error instead of panic on self var in wrong scope
Browse files Browse the repository at this point in the history
  • Loading branch information
phinze authored and bigkraig committed Mar 1, 2016
1 parent 337aad0 commit 624e08a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions terraform/interpolate.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,10 @@ func (i *Interpolater) valueSelfVar(
n string,
v *config.SelfVariable,
result map[string]ast.Variable) error {
if scope == nil || scope.Resource == nil {
return fmt.Errorf(
"%s: invalid scope, self variables are only valid on resources", n)
}
rv, err := config.NewResourceVariable(fmt.Sprintf(
"%s.%s.%d.%s",
scope.Resource.Type,
Expand Down
18 changes: 18 additions & 0 deletions terraform/interpolate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,24 @@ func TestInterpolator_resourceMultiAttributesComputed(t *testing.T) {
})
}

func TestInterpolater_selfVarWithoutResource(t *testing.T) {
i := &Interpolater{}

scope := &InterpolationScope{
Path: rootModulePath,
}

v, err := config.NewInterpolatedVariable("self.name")
if err != nil {
t.Fatalf("err: %s", err)
}

_, err = i.Values(scope, map[string]config.InterpolatedVariable{"foo": v})
if err == nil {
t.Fatalf("expected err, got none")
}
}

func getInterpolaterFixture(t *testing.T) *Interpolater {
lock := new(sync.RWMutex)
state := &State{
Expand Down

0 comments on commit 624e08a

Please sign in to comment.