Method: Codebuild::Create#perform

Defined in:
lib/codebuild/create.rb

#performObject



3
4
5
6
7
8
9
10
# File 'lib/codebuild/create.rb', line 3

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