oci.Core.NatGateway
Explore with Pulumi AI
This resource provides the Nat Gateway resource in Oracle Cloud Infrastructure Core service.
Creates a new NAT gateway for the specified VCN. You must also set up a route rule with the NAT gateway as the rule’s target. See Route Table.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNatGateway = new oci.core.NatGateway("test_nat_gateway", {
compartmentId: compartmentId,
vcnId: testVcn.id,
blockTraffic: natGatewayBlockTraffic,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: natGatewayDisplayName,
freeformTags: {
Department: "Finance",
},
publicIpId: testPublicIp.id,
routeTableId: testRouteTable.id,
});
import pulumi
import pulumi_oci as oci
test_nat_gateway = oci.core.NatGateway("test_nat_gateway",
compartment_id=compartment_id,
vcn_id=test_vcn["id"],
block_traffic=nat_gateway_block_traffic,
defined_tags={
"Operations.CostCenter": "42",
},
display_name=nat_gateway_display_name,
freeform_tags={
"Department": "Finance",
},
public_ip_id=test_public_ip["id"],
route_table_id=test_route_table["id"])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Core.NewNatGateway(ctx, "test_nat_gateway", &Core.NatGatewayArgs{
CompartmentId: pulumi.Any(compartmentId),
VcnId: pulumi.Any(testVcn.Id),
BlockTraffic: pulumi.Any(natGatewayBlockTraffic),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(natGatewayDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
PublicIpId: pulumi.Any(testPublicIp.Id),
RouteTableId: pulumi.Any(testRouteTable.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testNatGateway = new Oci.Core.NatGateway("test_nat_gateway", new()
{
CompartmentId = compartmentId,
VcnId = testVcn.Id,
BlockTraffic = natGatewayBlockTraffic,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = natGatewayDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
PublicIpId = testPublicIp.Id,
RouteTableId = testRouteTable.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.NatGateway;
import com.pulumi.oci.Core.NatGatewayArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testNatGateway = new NatGateway("testNatGateway", NatGatewayArgs.builder()
.compartmentId(compartmentId)
.vcnId(testVcn.id())
.blockTraffic(natGatewayBlockTraffic)
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(natGatewayDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.publicIpId(testPublicIp.id())
.routeTableId(testRouteTable.id())
.build());
}
}
resources:
testNatGateway:
type: oci:Core:NatGateway
name: test_nat_gateway
properties:
compartmentId: ${compartmentId}
vcnId: ${testVcn.id}
blockTraffic: ${natGatewayBlockTraffic}
definedTags:
Operations.CostCenter: '42'
displayName: ${natGatewayDisplayName}
freeformTags:
Department: Finance
publicIpId: ${testPublicIp.id}
routeTableId: ${testRouteTable.id}
Create NatGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NatGateway(name: string, args: NatGatewayArgs, opts?: CustomResourceOptions);
@overload
def NatGateway(resource_name: str,
args: NatGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NatGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
vcn_id: Optional[str] = None,
block_traffic: Optional[bool] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
public_ip_id: Optional[str] = None,
route_table_id: Optional[str] = None)
func NewNatGateway(ctx *Context, name string, args NatGatewayArgs, opts ...ResourceOption) (*NatGateway, error)
public NatGateway(string name, NatGatewayArgs args, CustomResourceOptions? opts = null)
public NatGateway(String name, NatGatewayArgs args)
public NatGateway(String name, NatGatewayArgs args, CustomResourceOptions options)
type: oci:Core:NatGateway
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NatGatewayArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var natGatewayResource = new Oci.Core.NatGateway("natGatewayResource", new()
{
CompartmentId = "string",
VcnId = "string",
BlockTraffic = false,
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
PublicIpId = "string",
RouteTableId = "string",
});
example, err := Core.NewNatGateway(ctx, "natGatewayResource", &Core.NatGatewayArgs{
CompartmentId: pulumi.String("string"),
VcnId: pulumi.String("string"),
BlockTraffic: pulumi.Bool(false),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PublicIpId: pulumi.String("string"),
RouteTableId: pulumi.String("string"),
})
var natGatewayResource = new NatGateway("natGatewayResource", NatGatewayArgs.builder()
.compartmentId("string")
.vcnId("string")
.blockTraffic(false)
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.publicIpId("string")
.routeTableId("string")
.build());
nat_gateway_resource = oci.core.NatGateway("natGatewayResource",
compartment_id="string",
vcn_id="string",
block_traffic=False,
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
},
public_ip_id="string",
route_table_id="string")
const natGatewayResource = new oci.core.NatGateway("natGatewayResource", {
compartmentId: "string",
vcnId: "string",
blockTraffic: false,
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
publicIpId: "string",
routeTableId: "string",
});
type: oci:Core:NatGateway
properties:
blockTraffic: false
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
publicIpId: string
routeTableId: string
vcnId: string
NatGateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The NatGateway resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Block
Traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- Route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Block
Traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- Route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- compartment
Id String - (Updatable) The OCID of the compartment to contain the NAT gateway.
- vcn
Id String The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic Boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- public
Ip StringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table StringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- compartment_
id str - (Updatable) The OCID of the compartment to contain the NAT gateway.
- vcn_
id str The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block_
traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- public_
ip_ strid - The OCID of the public IP address associated with the NAT gateway.
- route_
table_ strid (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- compartment
Id String - (Updatable) The OCID of the compartment to contain the NAT gateway.
- vcn
Id String The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic Boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- public
Ip StringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table StringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
Outputs
All input properties are implicitly available as output properties. Additionally, the NatGateway resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Nat
Ip string - The IP address associated with the NAT gateway.
- State string
- The NAT gateway's current state.
- Time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Id string
- The provider-assigned unique ID for this managed resource.
- Nat
Ip string - The IP address associated with the NAT gateway.
- State string
- The NAT gateway's current state.
- Time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- nat
Ip String - The IP address associated with the NAT gateway.
- state String
- The NAT gateway's current state.
- time
Created String - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id string
- The provider-assigned unique ID for this managed resource.
- nat
Ip string - The IP address associated with the NAT gateway.
- state string
- The NAT gateway's current state.
- time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id str
- The provider-assigned unique ID for this managed resource.
- nat_
ip str - The IP address associated with the NAT gateway.
- state str
- The NAT gateway's current state.
- time_
created str - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- id String
- The provider-assigned unique ID for this managed resource.
- nat
Ip String - The IP address associated with the NAT gateway.
- state String
- The NAT gateway's current state.
- time
Created String - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing NatGateway Resource
Get an existing NatGateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NatGatewayState, opts?: CustomResourceOptions): NatGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
block_traffic: Optional[bool] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
nat_ip: Optional[str] = None,
public_ip_id: Optional[str] = None,
route_table_id: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> NatGateway
func GetNatGateway(ctx *Context, name string, id IDInput, state *NatGatewayState, opts ...ResourceOption) (*NatGateway, error)
public static NatGateway Get(string name, Input<string> id, NatGatewayState? state, CustomResourceOptions? opts = null)
public static NatGateway get(String name, Output<String> id, NatGatewayState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Block
Traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Nat
Ip string - The IP address associated with the NAT gateway.
- Public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- Route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- State string
- The NAT gateway's current state.
- Time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Block
Traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- Nat
Ip string - The IP address associated with the NAT gateway.
- Public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- Route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- State string
- The NAT gateway's current state.
- Time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic Boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- compartment
Id String - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- nat
Ip String - The IP address associated with the NAT gateway.
- public
Ip StringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table StringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- state String
- The NAT gateway's current state.
- time
Created String - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- compartment
Id string - (Updatable) The OCID of the compartment to contain the NAT gateway.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- nat
Ip string - The IP address associated with the NAT gateway.
- public
Ip stringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table stringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- state string
- The NAT gateway's current state.
- time
Created string - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id string The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block_
traffic bool - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- compartment_
id str - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- nat_
ip str - The IP address associated with the NAT gateway.
- public_
ip_ strid - The OCID of the public IP address associated with the NAT gateway.
- route_
table_ strid (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- state str
- The NAT gateway's current state.
- time_
created str - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn_
id str The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- block
Traffic Boolean - (Updatable) Whether the NAT gateway blocks traffic through it. The default is
false
. Example:true
- compartment
Id String - (Updatable) The OCID of the compartment to contain the NAT gateway.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example:
{"Department": "Finance"}
- nat
Ip String - The IP address associated with the NAT gateway.
- public
Ip StringId - The OCID of the public IP address associated with the NAT gateway.
- route
Table StringId (Updatable) The OCID of the route table used by the NAT gateway.
If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
- state String
- The NAT gateway's current state.
- time
Created String - The date and time the NAT gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String The OCID of the VCN the gateway belongs to.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
NatGateways can be imported using the id
, e.g.
$ pulumi import oci:Core/natGateway:NatGateway test_nat_gateway "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.