Method: Codepipe::Pipeline#default_properties

Defined in:
lib/codepipe/pipeline.rb

#default_propertiesObject



28
29
30
31
32
33
34
35
36
37
# File 'lib/codepipe/pipeline.rb', line 28

def default_properties
  {
    name: @options[:full_pipeline_name],
    role_arn: { "Fn::GetAtt": "IamRole.Arn" },
    artifact_store: {
      type: "S3",
      location: s3_bucket, # auto creates s3 bucket
    }
  }
end