class Terrafying::AttributeRef

Public Class Methods

new( ref:, key: ) click to toggle source
# File lib/terrafying/generator.rb, line 108
def initialize(
  ref:,
  key:
)
  @ref = ref
  @key = key
end

Public Instance Methods

realise() click to toggle source
# File lib/terrafying/generator.rb, line 116
def realise
  "#{@ref.realise}.#{@key}"
end