mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-13 09:32:24 -06:00
terraform: validate count is non-negative
This commit is contained in:
parent
dd14303022
commit
e4ba737392
@ -991,6 +991,23 @@ func (c *walkContext) validateWalkFn() depgraph.WalkFunc {
|
||||
|
||||
// If we're expanding, then expand the nodes, and then rewalk the graph
|
||||
if rn.ExpandMode > ResourceExpandNone {
|
||||
// Interpolate the count and verify it is non-negative
|
||||
rc := NewResourceConfig(rn.Config.RawCount)
|
||||
rc.interpolate(c)
|
||||
count, err := rn.Config.Count()
|
||||
if err == nil {
|
||||
if count < 0 {
|
||||
err = fmt.Errorf(
|
||||
"%s error: count must be positive", rn.Resource.Id)
|
||||
}
|
||||
}
|
||||
if err != nil {
|
||||
l.Lock()
|
||||
defer l.Unlock()
|
||||
meta.Errs = append(meta.Errs, err)
|
||||
return nil
|
||||
}
|
||||
|
||||
return c.genericWalkResource(rn, walkFn)
|
||||
}
|
||||
|
||||
|
@ -107,6 +107,25 @@ func TestContextValidate_badVar(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestContextValidate_countNegative(t *testing.T) {
|
||||
p := testProvider("aws")
|
||||
m := testModule(t, "validate-count-negative")
|
||||
c := testContext(t, &ContextOpts{
|
||||
Module: m,
|
||||
Providers: map[string]ResourceProviderFactory{
|
||||
"aws": testProviderFuncFixed(p),
|
||||
},
|
||||
})
|
||||
|
||||
w, e := c.Validate()
|
||||
if len(w) > 0 {
|
||||
t.Fatalf("bad: %#v", w)
|
||||
}
|
||||
if len(e) == 0 {
|
||||
t.Fatalf("bad: %#v", e)
|
||||
}
|
||||
}
|
||||
|
||||
func TestContextValidate_moduleBadResource(t *testing.T) {
|
||||
m := testModule(t, "validate-module-bad-rc")
|
||||
p := testProvider("aws")
|
||||
|
3
terraform/test-fixtures/validate-count-negative/main.tf
Normal file
3
terraform/test-fixtures/validate-count-negative/main.tf
Normal file
@ -0,0 +1,3 @@
|
||||
resource "aws_instance" "test" {
|
||||
count = "-5"
|
||||
}
|
Loading…
Reference in New Issue
Block a user