# frozen_string_literal: true # rubocop:disable Layout/LineLength Aws.config[:elasticloadbalancingv2] = { stub_responses: { describe_load_balancers: { load_balancers: [ { load_balancer_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:loadbalancer/app/my-nlb/1aa1bb1cc1ddee11', dns_name: 'internal-my-nlb-1551266724.ap-northeast-1.elb.amazonaws.com', canonical_hosted_zone_id: 'A12BCDEDCBA34BC', created_time: Time.new(2017, 4, 4, 9, 00, 00, '+00:00'), load_balancer_name: 'my-nlb', # scheme: 'internal', scheme: 'internet-facing', vpc_id: 'vpc-ab123cde', state: { code: 'active', reason: nil }, type: 'network', availability_zones: [ { zone_name: 'ap-northeast-1a', subnet_id: 'subnet-1234a567' }, { zone_name: 'ap-northeast-1c', subnet_id: 'subnet-abcd7890' } ], ip_address_type: 'ipv4' } ], next_marker: nil }, describe_listeners: { listeners: [ { default_actions: [ { target_group_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:targetgroup/my-targets/73e2d6bc24d8a067', type: 'forward' } ], listener_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:listener/app/my-nlb/1aa1bb1cc1ddee11/f2f7dc8efc522ab2', load_balancer_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:loadbalancer/app/my-nlb/1aa1bb1cc1ddee11', port: 80, protocol: 'HTTP' } ] }, describe_target_groups: { target_groups: [ { health_check_interval_seconds: 30, health_check_path: '/', health_check_port: 'traffic-port', health_check_protocol: 'HTTP', health_check_timeout_seconds: 5, healthy_threshold_count: 5, load_balancer_arns: [ 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:loadbalancer/app/my-nlb/1aa1bb1cc1ddee11' ], matcher: { http_code: '200' }, port: 80, protocol: 'HTTP', target_group_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:targetgroup/my-nlb-target-group/73e2d6bc24d8a067', target_group_name: 'my-nlb-target-group', unhealthy_threshold_count: 2, vpc_id: 'vpc-ab123cde' } ] }, describe_rules: { rules: [ { actions: [ { target_group_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:targetgroup/my-nlb-target-group/73e2d6bc24d8a067', type: 'forward' } ], conditions: [], is_default: true, priority: 'default', rule_arn: 'arn:aws:elasticloadbalancing:ap-northeast-1:1234567890:listener-rule/app/my-nlb/1aa1bb1cc1ddee11/f2f7dc8efc522ab2/defaaaaaaaultbbbb' } ] } } } Aws.config[:ec2] = { stub_responses: { describe_subnets: { subnets: [ { state: 'available', vpc_id: 'vpc-ab123cde', subnet_id: 'subnet-1234a567', cidr_block: '10.0.1.0/24', tags: [ { key: 'Name', value: 'my-subnet' } ] } ] }, describe_vpcs: { vpcs: [ { vpc_id: 'vpc-ab123cde', tags: [ { key: 'Name', value: 'my-vpc' } ] } ] } } }