You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackaddrs/input_variable.go

16 lines
501 B

package stackaddrs
type InputVariable struct {
Name string
}
func (InputVariable) referenceableSigil() {}
func (InputVariable) inStackConfigSigil() {}
func (InputVariable) inStackInstanceSigil() {}
// ConfigInputVariable places an [InputVariable] in the context of a particular [Stack].
type ConfigInputVariable = InStackConfig[InputVariable]
// AbsInputVariable places an [InputVariable] in the context of a particular [StackInstance].
type AbsInputVariable = InStackInstance[InputVariable]