Sha256: 9bd456e20487e1803569a432515a29085ceea7e82f822a869607694a6b89e918

Contents?: true

Size: 305 Bytes

Versions: 20

Compression:

Stored size: 305 Bytes

Contents

module Cody
  class Create < Stack
    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

20 entries across 20 versions & 1 rubygems

Version Path
cody-0.9.8 lib/cody/create.rb
cody-0.9.7 lib/cody/create.rb
cody-0.9.6 lib/cody/create.rb
cody-0.9.5 lib/cody/create.rb
cody-0.9.4 lib/cody/create.rb
cody-0.9.3 lib/cody/create.rb
cody-0.9.2 lib/cody/create.rb
cody-0.9.1 lib/cody/create.rb
cody-0.9.0 lib/cody/create.rb
cody-0.8.6 lib/cody/create.rb
cody-0.8.5 lib/cody/create.rb
cody-0.8.4 lib/cody/create.rb
cody-0.8.3 lib/cody/create.rb
cody-0.8.2 lib/cody/create.rb
cody-0.8.1 lib/cody/create.rb
cody-0.8.0 lib/cody/create.rb
cody-0.7.3 lib/cody/create.rb
cody-0.7.2 lib/cody/create.rb
cody-0.7.1 lib/cody/create.rb
cody-0.7.0 lib/cody/create.rb