oci.Core.InternetGateway
Explore with Pulumi AI
This resource provides the Internet Gateway resource in Oracle Cloud Infrastructure Core service.
Creates a new internet gateway for the specified VCN. For more information, see Access to the Internet.
For the purposes of access control, you must provide the OCID of the compartment where you want the Internet Gateway to reside. Notice that the internet gateway doesn’t have to be in the same compartment as the VCN or other Networking Service components. If you’re not sure which compartment to use, put the Internet Gateway in the same compartment with the VCN. For more information about compartments and access control, see Overview of the IAM Service.
You may optionally specify a display name for the internet gateway, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information.
For traffic to flow between a subnet and an internet gateway, you must create a route rule accordingly in the subnet’s route table (for example, 0.0.0.0/0 > internet gateway). See UpdateRouteTable.
You must specify whether the internet gateway is enabled when you create it. If it’s disabled, that means no traffic will flow to/from the internet even if there’s a route rule that enables that traffic. You can later use UpdateInternetGateway to easily disable/enable the gateway without changing the route rule.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInternetGateway = new oci.core.InternetGateway("test_internet_gateway", {
compartmentId: compartmentId,
vcnId: testVcn.id,
enabled: internetGatewayEnabled,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: internetGatewayDisplayName,
freeformTags: {
Department: "Finance",
},
routeTableId: testRouteTable.id,
});
import pulumi
import pulumi_oci as oci
test_internet_gateway = oci.core.InternetGateway("test_internet_gateway",
compartment_id=compartment_id,
vcn_id=test_vcn["id"],
enabled=internet_gateway_enabled,
defined_tags={
"Operations.CostCenter": "42",
},
display_name=internet_gateway_display_name,
freeform_tags={
"Department": "Finance",
},
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.NewInternetGateway(ctx, "test_internet_gateway", &Core.InternetGatewayArgs{
CompartmentId: pulumi.Any(compartmentId),
VcnId: pulumi.Any(testVcn.Id),
Enabled: pulumi.Any(internetGatewayEnabled),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(internetGatewayDisplayName),
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
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 testInternetGateway = new Oci.Core.InternetGateway("test_internet_gateway", new()
{
CompartmentId = compartmentId,
VcnId = testVcn.Id,
Enabled = internetGatewayEnabled,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = internetGatewayDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
RouteTableId = testRouteTable.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.InternetGateway;
import com.pulumi.oci.Core.InternetGatewayArgs;
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 testInternetGateway = new InternetGateway("testInternetGateway", InternetGatewayArgs.builder()
.compartmentId(compartmentId)
.vcnId(testVcn.id())
.enabled(internetGatewayEnabled)
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(internetGatewayDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.routeTableId(testRouteTable.id())
.build());
}
}
resources:
testInternetGateway:
type: oci:Core:InternetGateway
name: test_internet_gateway
properties:
compartmentId: ${compartmentId}
vcnId: ${testVcn.id}
enabled: ${internetGatewayEnabled}
definedTags:
Operations.CostCenter: '42'
displayName: ${internetGatewayDisplayName}
freeformTags:
Department: Finance
routeTableId: ${testRouteTable.id}
Create InternetGateway Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InternetGateway(name: string, args: InternetGatewayArgs, opts?: CustomResourceOptions);
@overload
def InternetGateway(resource_name: str,
args: InternetGatewayArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InternetGateway(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
vcn_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
route_table_id: Optional[str] = None)
func NewInternetGateway(ctx *Context, name string, args InternetGatewayArgs, opts ...ResourceOption) (*InternetGateway, error)
public InternetGateway(string name, InternetGatewayArgs args, CustomResourceOptions? opts = null)
public InternetGateway(String name, InternetGatewayArgs args)
public InternetGateway(String name, InternetGatewayArgs args, CustomResourceOptions options)
type: oci:Core:InternetGateway
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 InternetGatewayArgs
- 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 InternetGatewayArgs
- 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 InternetGatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InternetGatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InternetGatewayArgs
- 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 internetGatewayResource = new Oci.Core.InternetGateway("internetGatewayResource", new()
{
CompartmentId = "string",
VcnId = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
Enabled = false,
FreeformTags =
{
{ "string", "string" },
},
RouteTableId = "string",
});
example, err := Core.NewInternetGateway(ctx, "internetGatewayResource", &Core.InternetGatewayArgs{
CompartmentId: pulumi.String("string"),
VcnId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
Enabled: pulumi.Bool(false),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
RouteTableId: pulumi.String("string"),
})
var internetGatewayResource = new InternetGateway("internetGatewayResource", InternetGatewayArgs.builder()
.compartmentId("string")
.vcnId("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.enabled(false)
.freeformTags(Map.of("string", "string"))
.routeTableId("string")
.build());
internet_gateway_resource = oci.core.InternetGateway("internetGatewayResource",
compartment_id="string",
vcn_id="string",
defined_tags={
"string": "string",
},
display_name="string",
enabled=False,
freeform_tags={
"string": "string",
},
route_table_id="string")
const internetGatewayResource = new oci.core.InternetGateway("internetGatewayResource", {
compartmentId: "string",
vcnId: "string",
definedTags: {
string: "string",
},
displayName: "string",
enabled: false,
freeformTags: {
string: "string",
},
routeTableId: "string",
});
type: oci:Core:InternetGateway
properties:
compartmentId: string
definedTags:
string: string
displayName: string
enabled: false
freeformTags:
string: string
routeTableId: string
vcnId: string
InternetGateway 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 InternetGateway resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the internet gateway.
- Vcn
Id string The OCID of the VCN the Internet Gateway is attached 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
- 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.
- Enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- Route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the internet gateway.
- Vcn
Id string The OCID of the VCN the Internet Gateway is attached 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
- 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.
- Enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- Route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- compartment
Id String - (Updatable) The OCID of the compartment to contain the internet gateway.
- vcn
Id String The OCID of the VCN the Internet Gateway is attached 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
- 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.
- enabled Boolean
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route
Table StringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- compartment
Id string - (Updatable) The OCID of the compartment to contain the internet gateway.
- vcn
Id string The OCID of the VCN the Internet Gateway is attached 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
- {[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.
- enabled boolean
- (Updatable) Whether the gateway is enabled upon creation.
- {[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"}
- route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- compartment_
id str - (Updatable) The OCID of the compartment to contain the internet gateway.
- vcn_
id str The OCID of the VCN the Internet Gateway is attached 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
- 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.
- enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route_
table_ strid - (Updatable) The OCID of the route table the Internet Gateway is using.
- compartment
Id String - (Updatable) The OCID of the compartment to contain the internet gateway.
- vcn
Id String The OCID of the VCN the Internet Gateway is attached 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
- 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.
- enabled Boolean
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route
Table StringId - (Updatable) The OCID of the route table the Internet Gateway is using.
Outputs
All input properties are implicitly available as output properties. Additionally, the InternetGateway resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The internet gateway's current state.
- Time
Created string - The date and time the internet 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.
- State string
- The internet gateway's current state.
- Time
Created string - The date and time the internet 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.
- state String
- The internet gateway's current state.
- time
Created String - The date and time the internet 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.
- state string
- The internet gateway's current state.
- time
Created string - The date and time the internet 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.
- state str
- The internet gateway's current state.
- time_
created str - The date and time the internet 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.
- state String
- The internet gateway's current state.
- time
Created String - The date and time the internet gateway was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing InternetGateway Resource
Get an existing InternetGateway 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?: InternetGatewayState, opts?: CustomResourceOptions): InternetGateway
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
enabled: Optional[bool] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
route_table_id: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> InternetGateway
func GetInternetGateway(ctx *Context, name string, id IDInput, state *InternetGatewayState, opts ...ResourceOption) (*InternetGateway, error)
public static InternetGateway Get(string name, Input<string> id, InternetGatewayState? state, CustomResourceOptions? opts = null)
public static InternetGateway get(String name, Output<String> id, InternetGatewayState 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.
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the internet 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.
- Enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- Route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- State string
- The internet gateway's current state.
- Time
Created string - The date and time the internet 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 Internet Gateway is attached 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
- Compartment
Id string - (Updatable) The OCID of the compartment to contain the internet 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.
- Enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- Route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- State string
- The internet gateway's current state.
- Time
Created string - The date and time the internet 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 Internet Gateway is attached 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
- compartment
Id String - (Updatable) The OCID of the compartment to contain the internet 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.
- enabled Boolean
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route
Table StringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- state String
- The internet gateway's current state.
- time
Created String - The date and time the internet 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 Internet Gateway is attached 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
- compartment
Id string - (Updatable) The OCID of the compartment to contain the internet 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.
- enabled boolean
- (Updatable) Whether the gateway is enabled upon creation.
- {[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"}
- route
Table stringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- state string
- The internet gateway's current state.
- time
Created string - The date and time the internet 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 Internet Gateway is attached 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
- compartment_
id str - (Updatable) The OCID of the compartment to contain the internet 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.
- enabled bool
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route_
table_ strid - (Updatable) The OCID of the route table the Internet Gateway is using.
- state str
- The internet gateway's current state.
- time_
created str - The date and time the internet 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 Internet Gateway is attached 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
- compartment
Id String - (Updatable) The OCID of the compartment to contain the internet 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.
- enabled Boolean
- (Updatable) Whether the gateway is enabled upon creation.
- 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"}
- route
Table StringId - (Updatable) The OCID of the route table the Internet Gateway is using.
- state String
- The internet gateway's current state.
- time
Created String - The date and time the internet 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 Internet Gateway is attached 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
InternetGateways can be imported using the id
, e.g.
$ pulumi import oci:Core/internetGateway:InternetGateway test_internet_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.