# rubocop:disable Metrics/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_target_health: { target_health_descriptions: [ { target: { id: 'i-0f76fade', port: 80 }, target_health: { description: 'Given target group is not configured to receive traffic from ELB', reason: 'Target.NotInUse', state: 'unused' } }, { health_check_port: '80', target: { id: 'i-ec12345a', port: 80 }, target_health: { state: 'healthy' } } ] } } } Aws.config[:ec2] = { stub_responses: { describe_instances: { reservations: [ { instances: [ { instance_id: 'i-ec12345a', image_id: 'ami-abc12def', vpc_id: 'vpc-ab123cde', subnet_id: 'subnet-1234a567', public_ip_address: '123.0.456.789', private_ip_address: '10.0.1.1', instance_type: 't2.small', state: { name: 'running' }, iam_instance_profile: { arn: 'arn:aws:iam::123456789012:instance-profile/Ec2IamProfileName', id: 'ABCDEFGHIJKLMNOPQRSTU' }, block_device_mappings: [ { device_name: '/dev/sda', ebs: { volume_id: 'vol-123a123b' } } ], network_interfaces: [ { network_interface_id: 'eni-12ab3cde', subnet_id: 'subnet-1234a567', vpc_id: 'vpc-ab123cde', attachment: { device_index: 1 } } ], tags: [ { key: 'Name', value: 'my-ec2' } ] } ] } ] }, 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' } ] } ] } } }