Class: Terrafying::DynamoDb::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/terrafying/dynamodb/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



8
9
10
11
# File 'lib/terrafying/dynamodb/config.rb', line 8

def initialize
  @state_table = 'terrafying-state'
  @lock_table = 'terrafying-state-lock'
end

Instance Attribute Details

#lock_tableObject

Returns the value of attribute lock_table.



6
7
8
# File 'lib/terrafying/dynamodb/config.rb', line 6

def lock_table
  @lock_table
end

#state_tableObject

Returns the value of attribute state_table.



6
7
8
# File 'lib/terrafying/dynamodb/config.rb', line 6

def state_table
  @state_table
end