Sha256: 1d3bd91e25c8fd1d6354036733266b5a7ba237b419015c8421301d3717ed4589

Contents?: true

Size: 310 Bytes

Versions: 9

Compression:

Stored size: 310 Bytes

Contents

class Cody::Stack
  class Create < Base
    def perform
      cfn.create_stack(
        stack_name: @stack_name,
        template_body: YAML.dump(@template),
        capabilities: ["CAPABILITY_IAM"]
      )
      puts "Creating stack #{@stack_name}. Check CloudFormation console for status."
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cody-1.2.1 lib/cody/stack/create.rb
cody-1.1.0 lib/cody/stack/create.rb
cody-1.0.6 lib/cody/stack/create.rb
cody-1.0.5 lib/cody/stack/create.rb
cody-1.0.4 lib/cody/stack/create.rb
cody-1.0.3 lib/cody/stack/create.rb
cody-1.0.2 lib/cody/stack/create.rb
cody-1.0.1 lib/cody/stack/create.rb
cody-1.0.0 lib/cody/stack/create.rb