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.



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

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

Instance Attribute Details

#lock_tableObject

Returns the value of attribute lock_table.



4
5
6
# File 'lib/terrafying/dynamodb/config.rb', line 4

def lock_table
  @lock_table
end

#state_tableObject

Returns the value of attribute state_table.



4
5
6
# File 'lib/terrafying/dynamodb/config.rb', line 4

def state_table
  @state_table
end