Skip to content

SizeAtLeast, SizeBetween and SizeAtMost for knownvalue #418

Open
@zliang-akamai

Description

@zliang-akamai

An example:

{
	ConfigStateChecks: []statecheck.StateCheck{
		statecheck.ExpectKnownValue(
			resourceName,
			tfjsonpath.New("some_attr"),
			knownvalue.SetSizeAtMost(3),
		),
		statecheck.ExpectKnownValue(
			resourceName,
			tfjsonpath.New("some_attr"),
			knownvalue.SetSizeAtLeast(1),
		),
		statecheck.ExpectKnownValue(
			resourceName,
			tfjsonpath.New("some_attr"),
			knownvalue.SetSizeBetween(1, 3),
		),
	},
}

It only has SetSizeExact today. Similar stuff can be applied to List and Map. I can put up a PR if you guys can confirm this feature is needed.

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions