nat_gateways
Creates, updates, deletes or gets a nat_gateway
resource or lists nat_gateways
in a region
Overview
Name | nat_gateways |
Type | Resource |
Description | Specifies a network address translation (NAT) gateway in the specified subnet. You can create either a public NAT gateway or a private NAT gateway. The default is a public NAT gateway. If you create a public NAT gateway, you must specify an elastic IP address. With a NAT gateway, instances in a private subnet can connect to the internet, other AWS services, or an on-premises network using the IP address of the NAT gateway. For more information, see [NAT gateways](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html) in the *Amazon VPC User Guide*. If you add a default route ( AWS::EC2::Route resource) that points to a NAT gateway, specify the NAT gateway ID for the route's NatGatewayId property.When you associate an Elastic IP address or secondary Elastic IP address with a public NAT gateway, the network border group of the Elastic IP address must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. Otherwise, the NAT gateway fails to launch. You can see the network border group for the AZ by viewing the details of the subnet. Similarly, you can view the network border group for the Elastic IP address by viewing its details. For more information, see [Allocate an Elastic IP address](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#allocate-eip) in the *Amazon VPC User Guide*. |
Id | aws.ec2.nat_gateways |
Fields
Name | Datatype | Description |
---|---|---|
secondary_allocation_ids | array | Secondary EIP allocation IDs. For more information, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating) in the *Amazon VPC User Guide*. |
private_ip_address | string | The private IPv4 address to assign to the NAT gateway. If you don't provide an address, a private IPv4 address will be automatically assigned. |
connectivity_type | string | Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity. |
secondary_private_ip_addresses | array | Secondary private IPv4 addresses. For more information about secondary addresses, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating) in the *Amazon Virtual Private Cloud User Guide*.SecondaryPrivateIpAddressCount and SecondaryPrivateIpAddresses cannot be set at the same time. |
secondary_private_ip_address_count | integer | [Private NAT gateway only] The number of secondary private IPv4 addresses you want to assign to the NAT gateway. For more information about secondary addresses, see [Create a NAT gateway](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating) in the *Amazon Virtual Private Cloud User Guide*.SecondaryPrivateIpAddressCount and SecondaryPrivateIpAddresses cannot be set at the same time. |
allocation_id | string | [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway. |
subnet_id | string | The ID of the subnet in which the NAT gateway is located. |
nat_gateway_id | string | |
tags | array | The tags for the NAT gateway. |
max_drain_duration_seconds | integer | The maximum amount of time to wait (in seconds) before forcibly releasing the IP addresses if connections are still in progress. Default value is 350 seconds. |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
create_resource | INSERT | SubnetId, region |
delete_resource | DELETE | data__Identifier, region |
update_resource | UPDATE | data__Identifier, data__PatchDocument, region |
list_resources | SELECT | region |
get_resource | SELECT | data__Identifier, region |
SELECT
examples
Gets all nat_gateways
in a region.
SELECT
region,
secondary_allocation_ids,
private_ip_address,
connectivity_type,
secondary_private_ip_addresses,
secondary_private_ip_address_count,
allocation_id,
subnet_id,
nat_gateway_id,
tags,
max_drain_duration_seconds
FROM aws.ec2.nat_gateways
WHERE region = 'us-east-1';
Gets all properties from an individual nat_gateway
.
SELECT
region,
secondary_allocation_ids,
private_ip_address,
connectivity_type,
secondary_private_ip_addresses,
secondary_private_ip_address_count,
allocation_id,
subnet_id,
nat_gateway_id,
tags,
max_drain_duration_seconds
FROM aws.ec2.nat_gateways
WHERE region = 'us-east-1' AND data__Identifier = '<NatGatewayId>';
INSERT
example
Use the following StackQL query and manifest file to create a new nat_gateway
resource, using stack-deploy
.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO aws.ec2.nat_gateways (
SubnetId,
region
)
SELECT
'{{ SubnetId }}',
'{{ region }}';
/*+ create */
INSERT INTO aws.ec2.nat_gateways (
SecondaryAllocationIds,
PrivateIpAddress,
ConnectivityType,
SecondaryPrivateIpAddresses,
SecondaryPrivateIpAddressCount,
AllocationId,
SubnetId,
Tags,
MaxDrainDurationSeconds,
region
)
SELECT
'{{ SecondaryAllocationIds }}',
'{{ PrivateIpAddress }}',
'{{ ConnectivityType }}',
'{{ SecondaryPrivateIpAddresses }}',
'{{ SecondaryPrivateIpAddressCount }}',
'{{ AllocationId }}',
'{{ SubnetId }}',
'{{ Tags }}',
'{{ MaxDrainDurationSeconds }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: nat_gateway
props:
- name: SecondaryAllocationIds
value:
- '{{ SecondaryAllocationIds[0] }}'
- name: PrivateIpAddress
value: '{{ PrivateIpAddress }}'
- name: ConnectivityType
value: '{{ ConnectivityType }}'
- name: SecondaryPrivateIpAddresses
value:
- '{{ SecondaryPrivateIpAddresses[0] }}'
- name: SecondaryPrivateIpAddressCount
value: '{{ SecondaryPrivateIpAddressCount }}'
- name: AllocationId
value: '{{ AllocationId }}'
- name: SubnetId
value: '{{ SubnetId }}'
- name: Tags
value:
- Key: '{{ Key }}'
Value: '{{ Value }}'
- name: MaxDrainDurationSeconds
value: '{{ MaxDrainDurationSeconds }}'
DELETE
example
/*+ delete */
DELETE FROM aws.ec2.nat_gateways
WHERE data__Identifier = '<NatGatewayId>'
AND region = 'us-east-1';
Permissions
To operate on the nat_gateways
resource, the following permissions are required:
Read
ec2:DescribeNatGateways
Create
ec2:CreateNatGateway,
ec2:DescribeNatGateways,
ec2:CreateTags
Update
ec2:DescribeNatGateways,
ec2:CreateTags,
ec2:DeleteTags,
ec2:AssociateNatGatewayAddress,
ec2:DisassociateNatGatewayAddress,
ec2:AssignPrivateNatGatewayAddress,
ec2:UnassignPrivateNatGatewayAddress
List
ec2:DescribeNatGateways
Delete
ec2:DeleteNatGateway,
ec2:DescribeNatGateways