diff --git a/aws/assets/bats/bats-spec.yml b/aws/assets/bats/bats-spec.yml index 0221a81..dcedfea 100644 --- a/aws/assets/bats/bats-spec.yml +++ b/aws/assets/bats/bats-spec.yml @@ -2,7 +2,7 @@ cpi: aws properties: vip: ((bats_eip)) - second_static_ip: ((network_static_ip_2)) + second_static_ip: ((network_second_static_ip)) pool_size: 1 ssh_key_pair: public_key: ((ssh_public_key)) @@ -10,9 +10,10 @@ properties: stemcell: name: ((stemcell_name)) version: latest + instance_type: m6id.large instances: 1 availability_zone: ((az)) - key_name: ((default_key_name)) + key_name: ((default_key_name)) networks: - name: default static_ip: ((network_static_ip_1)) @@ -23,3 +24,34 @@ properties: gateway: ((internal_gw)) subnet: ((subnet_id)) security_groups: ((default_security_groups)) + nic_group: ((default_nic_group)) + - name: ipv6 + static_ip: ((network_static_ipv6)) + type: manual + cidr: ((ipv6_cidr)) + reserved: [((ipv6_reserved_range))] + static: [((ipv6_static_range))] + gateway: ((ipv6_gateway)) + subnet: ((subnet_id)) + security_groups: ((default_security_groups)) + nic_group: ((default_nic_group)) + - name: prefix + type: manual + prefix: ((network_prefix)) + cidr: ((ipv6_cidr)) + reserved: [((ipv6_reserved_range))] + static: [((ipv6_static_range))] + gateway: ((ipv6_gateway)) + subnet: ((subnet_id)) + security_groups: ((default_security_groups)) + nic_group: ((default_nic_group)) + - name: second + static_ip: ((network_static_ip_2)) + type: manual + cidr: ((internal_cidr)) + reserved: [((reserved_range))] + static: [((static_range))] + gateway: ((internal_gw)) + subnet: ((subnet_id)) + security_groups: ((default_security_groups)) + nic_group: ((second_nic_group))