Class: Ufo::Cfn::Stack::Builder::Resources::Scaling::Role
- Inherits:
-
Base
- Object
- Ufo::CLI::Base
- Base
- Base
- Base
- Ufo::Cfn::Stack::Builder::Resources::Scaling::Role
- Defined in:
- lib/ufo/cfn/stack/builder/resources/scaling/role.rb
Instance Attribute Summary
Attributes inherited from Base
Attributes inherited from Ufo::CLI::Base
Instance Method Summary collapse
Methods included from Ufo::Concerns::Autoscaling
#autoscaling, #autoscaling_enabled?
Methods inherited from Base
build, #initialize, #managed_security_group, #managed_security_groups?, #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 |
# File 'lib/ufo/cfn/stack/builder/resources/scaling/role.rb', line 3 def build return unless autoscaling_enabled? text =" Type: AWS::IAM::Role\n Properties:\n AssumeRolePolicyDocument:\n Statement:\n - Effect: Allow\n Principal:\n Service: [application-autoscaling.amazonaws.com]\n Action: [\"sts:AssumeRole\"]\n Policies:\n - PolicyName: !Sub \"${AWS::StackName}-auto-scaling-policy\"\n PolicyDocument:\n Version: \"2012-10-17\"\n Statement:\n - Effect: Allow\n Action:\n - ecs:DescribeServices\n - ecs:UpdateService\n - cloudwatch:PutMetricAlarm\n - cloudwatch:DescribeAlarms\n - cloudwatch:DeleteAlarms\n Resource:\n - \"*\"\n EOL\n Ufo::Yaml.load(text).deep_symbolize_keys\nend\n" |