Class: StackMaster::AwsDriver::CloudFormation

Inherits:
Object
  • Object
show all
Defined in:
lib/stack_master/aws_driver/cloud_formation.rb

Instance Method Summary collapse

Instance Method Details

#cancel_update_stack(options) ⇒ Object



17
18
19
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 17

def cancel_update_stack(options)
  cf.cancel_update_stack(options)
end

#create_stack(options) ⇒ Object



41
42
43
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 41

def create_stack(options)
  cf.create_stack(options)
end

#delete_stack(options) ⇒ Object



9
10
11
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 9

def delete_stack(options)
  cf.delete_stack(options)
end

#describe_stack_events(options) ⇒ Object



33
34
35
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 33

def describe_stack_events(options)
  cf.describe_stack_events(options)
end

#describe_stack_resources(options) ⇒ Object



21
22
23
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 21

def describe_stack_resources(options)
  cf.describe_stack_resources(options)
end

#describe_stacks(options) ⇒ Object



13
14
15
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 13

def describe_stacks(options)
  cf.describe_stacks(options)
end

#get_stack_policy(options) ⇒ Object



29
30
31
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 29

def get_stack_policy(options)
  cf.get_stack_policy(options)
end

#get_template(options) ⇒ Object



25
26
27
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 25

def get_template(options)
  cf.get_template(options)
end

#set_region(region) ⇒ Object



4
5
6
7
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 4

def set_region(region)
  @region = region
  @cf = nil
end

#update_stack(options) ⇒ Object



37
38
39
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 37

def update_stack(options)
  cf.update_stack(options)
end

#validate_template(options) ⇒ Object



45
46
47
# File 'lib/stack_master/aws_driver/cloud_formation.rb', line 45

def validate_template(options)
  cf.validate_template(options)
end