Class: Ufo::Cfn::Stack::Builder::Parameters
- Inherits:
-
Base
- Object
- Ufo::CLI::Base
- Base
- Base
- Ufo::Cfn::Stack::Builder::Parameters
- Defined in:
- lib/ufo/cfn/stack/builder/parameters.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Ufo::CLI::Base
Instance Method Summary collapse
Methods inherited from Base
build, #initialize, #manage_ecs_security_group?, #managed_security_group, #security_groups
Methods included from Ufo::Concerns
Methods included from Ufo::Concerns::Names
Methods included from AwsServices
#acm, #applicationautoscaling, #aws_options, #cfn, #cloudwatchlogs, #ec2, #ecr, #ecs, #elb, #s3, #ssm_client, #waf_client
Methods included from AwsServices::Concerns
#find_stack, #find_stack_resources, #stack_resources, #status, #task_definition_arns
Methods inherited from Ufo::CLI::Base
Methods included from Utils::Sure
Methods included from Utils::Pretty
#pretty_home, #pretty_path, #pretty_time
Methods included from Utils::Logging
Constructor Details
This class inherits a constructor from Ufo::Cfn::Stack::Builder::Base
Instance Method Details
#build ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/ufo/cfn/stack/builder/parameters.rb', line 3 def build yaml =" Vpc:\n Description: Existing vpc id\n Type: AWS::EC2::VPC::Id\n ElbSubnets:\n Description: Existing subnet ids for ELB\n Type: List<AWS::EC2::Subnet::Id>\n EcsSubnets:\n Description: Existing subnet ids for ECS\n Type: List<AWS::EC2::Subnet::Id>\n ElbTargetGroup:\n Description: Existing target group\n Type: String\n Default: ''\n CreateElb:\n Description: Create elb\n Type: String\n Default: true\n EcsDesiredCount:\n Description: Ecs desired count\n Type: String\n Default: ''\n EcsSchedulingStrategy:\n Description: The scheduling strategy to use for the service\n Type: String\n Default: REPLICA\n EOL\n YAML.load(yaml).deep_symbolize_keys\nend\n" |