terraform/config/lang/ast/variable_access.go

15 lines
204 B
Go

package ast
import (
"fmt"
)
// VariableAccess represents a variable access.
type VariableAccess struct {
Name string
}
func (n *VariableAccess) GoString() string {
return fmt.Sprintf("*%#v", *n)
}