oci.Core.DrgAttachment
Explore with Pulumi AI
This resource provides the Drg Attachment resource in Oracle Cloud Infrastructure Core service.
Attaches the specified DRG to the specified network resource. A VCN can be attached to only one DRG
at a time, but a DRG can be attached to more than one VCN. The response includes a DrgAttachment
object with its own OCID. For more information about DRGs, see
Dynamic Routing Gateways (DRGs).
You may optionally specify a display name for the attachment, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information.
For the purposes of access control, the DRG attachment is automatically placed into the currently selected compartment. For more information about compartments and access control, see Overview of the IAM Service.
Create DrgAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DrgAttachment(name: string, args: DrgAttachmentArgs, opts?: CustomResourceOptions);
@overload
def DrgAttachment(resource_name: str,
args: DrgAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DrgAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
drg_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
drg_route_table_id: Optional[str] = None,
export_drg_route_distribution_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
network_details: Optional[_core.DrgAttachmentNetworkDetailsArgs] = None,
remove_export_drg_route_distribution_trigger: Optional[bool] = None,
route_table_id: Optional[str] = None,
vcn_id: Optional[str] = None)
func NewDrgAttachment(ctx *Context, name string, args DrgAttachmentArgs, opts ...ResourceOption) (*DrgAttachment, error)
public DrgAttachment(string name, DrgAttachmentArgs args, CustomResourceOptions? opts = null)
public DrgAttachment(String name, DrgAttachmentArgs args)
public DrgAttachment(String name, DrgAttachmentArgs args, CustomResourceOptions options)
type: oci:Core:DrgAttachment
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 DrgAttachmentArgs
- 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 DrgAttachmentArgs
- 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 DrgAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DrgAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DrgAttachmentArgs
- 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 drgAttachmentResource = new Oci.Core.DrgAttachment("drgAttachmentResource", new()
{
DrgId = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
DrgRouteTableId = "string",
ExportDrgRouteDistributionId = "string",
FreeformTags =
{
{ "string", "string" },
},
NetworkDetails = new Oci.Core.Inputs.DrgAttachmentNetworkDetailsArgs
{
Type = "string",
Id = "string",
Ids = new[]
{
"string",
},
IpsecConnectionId = "string",
RouteTableId = "string",
TransportAttachmentId = "string",
TransportOnlyMode = false,
VcnRouteType = "string",
},
RemoveExportDrgRouteDistributionTrigger = false,
RouteTableId = "string",
VcnId = "string",
});
example, err := Core.NewDrgAttachment(ctx, "drgAttachmentResource", &Core.DrgAttachmentArgs{
DrgId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
DrgRouteTableId: pulumi.String("string"),
ExportDrgRouteDistributionId: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
NetworkDetails: &core.DrgAttachmentNetworkDetailsArgs{
Type: pulumi.String("string"),
Id: pulumi.String("string"),
Ids: pulumi.StringArray{
pulumi.String("string"),
},
IpsecConnectionId: pulumi.String("string"),
RouteTableId: pulumi.String("string"),
TransportAttachmentId: pulumi.String("string"),
TransportOnlyMode: pulumi.Bool(false),
VcnRouteType: pulumi.String("string"),
},
RemoveExportDrgRouteDistributionTrigger: pulumi.Bool(false),
RouteTableId: pulumi.String("string"),
VcnId: pulumi.String("string"),
})
var drgAttachmentResource = new DrgAttachment("drgAttachmentResource", DrgAttachmentArgs.builder()
.drgId("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.drgRouteTableId("string")
.exportDrgRouteDistributionId("string")
.freeformTags(Map.of("string", "string"))
.networkDetails(DrgAttachmentNetworkDetailsArgs.builder()
.type("string")
.id("string")
.ids("string")
.ipsecConnectionId("string")
.routeTableId("string")
.transportAttachmentId("string")
.transportOnlyMode(false)
.vcnRouteType("string")
.build())
.removeExportDrgRouteDistributionTrigger(false)
.routeTableId("string")
.vcnId("string")
.build());
drg_attachment_resource = oci.core.DrgAttachment("drgAttachmentResource",
drg_id="string",
defined_tags={
"string": "string",
},
display_name="string",
drg_route_table_id="string",
export_drg_route_distribution_id="string",
freeform_tags={
"string": "string",
},
network_details=oci.core.DrgAttachmentNetworkDetailsArgs(
type="string",
id="string",
ids=["string"],
ipsec_connection_id="string",
route_table_id="string",
transport_attachment_id="string",
transport_only_mode=False,
vcn_route_type="string",
),
remove_export_drg_route_distribution_trigger=False,
route_table_id="string",
vcn_id="string")
const drgAttachmentResource = new oci.core.DrgAttachment("drgAttachmentResource", {
drgId: "string",
definedTags: {
string: "string",
},
displayName: "string",
drgRouteTableId: "string",
exportDrgRouteDistributionId: "string",
freeformTags: {
string: "string",
},
networkDetails: {
type: "string",
id: "string",
ids: ["string"],
ipsecConnectionId: "string",
routeTableId: "string",
transportAttachmentId: "string",
transportOnlyMode: false,
vcnRouteType: "string",
},
removeExportDrgRouteDistributionTrigger: false,
routeTableId: "string",
vcnId: "string",
});
type: oci:Core:DrgAttachment
properties:
definedTags:
string: string
displayName: string
drgId: string
drgRouteTableId: string
exportDrgRouteDistributionId: string
freeformTags:
string: string
networkDetails:
id: string
ids:
- string
ipsecConnectionId: string
routeTableId: string
transportAttachmentId: string
transportOnlyMode: false
type: string
vcnRouteType: string
removeExportDrgRouteDistributionTrigger: false
routeTableId: string
vcnId: string
DrgAttachment 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 DrgAttachment resource accepts the following input properties:
- Drg
Id string - The OCID of the DRG.
- 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.
- Drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- Export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- Network
Details DrgAttachment Network Details - (Updatable)
- Remove
Export boolDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- Route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- Vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- Drg
Id string - The OCID of the DRG.
- 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.
- Drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- Export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- Network
Details DrgAttachment Network Details Args - (Updatable)
- Remove
Export boolDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- Route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- Vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- drg
Id String - The OCID of the DRG.
- 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.
- drg
Route StringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg StringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- network
Details DrgAttachment Network Details - (Updatable)
- remove
Export BooleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table StringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- vcn
Id String - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- drg
Id string - The OCID of the DRG.
- {[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.
- drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- {[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"}
- network
Details DrgAttachment Network Details - (Updatable)
- remove
Export booleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- drg_
id str - The OCID of the DRG.
- 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.
- drg_
route_ strtable_ id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export_
drg_ strroute_ distribution_ id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- network_
details core.Drg Attachment Network Details Args - (Updatable)
- remove_
export_ booldrg_ route_ distribution_ trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route_
table_ strid (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- vcn_
id str - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- drg
Id String - The OCID of the DRG.
- 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.
- drg
Route StringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg StringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- network
Details Property Map - (Updatable)
- remove
Export BooleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table StringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- vcn
Id String - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the DrgAttachment resource produces the following output properties:
- Compartment
Id string - The OCID of the compartment containing the DRG attachment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Cross boolTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- State string
- The DRG attachment's current state.
- Time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Compartment
Id string - The OCID of the compartment containing the DRG attachment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Cross boolTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- State string
- The DRG attachment's current state.
- Time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - The OCID of the compartment containing the DRG attachment.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Cross BooleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- state String
- The DRG attachment's current state.
- time
Created String - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id string - The OCID of the compartment containing the DRG attachment.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Cross booleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- state string
- The DRG attachment's current state.
- time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment_
id str - The OCID of the compartment containing the DRG attachment.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
cross_ booltenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- state str
- The DRG attachment's current state.
- time_
created str - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- compartment
Id String - The OCID of the compartment containing the DRG attachment.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Cross BooleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- state String
- The DRG attachment's current state.
- time
Created String - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing DrgAttachment Resource
Get an existing DrgAttachment 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?: DrgAttachmentState, opts?: CustomResourceOptions): DrgAttachment
@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,
drg_id: Optional[str] = None,
drg_route_table_id: Optional[str] = None,
export_drg_route_distribution_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_cross_tenancy: Optional[bool] = None,
network_details: Optional[_core.DrgAttachmentNetworkDetailsArgs] = None,
remove_export_drg_route_distribution_trigger: Optional[bool] = None,
route_table_id: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
vcn_id: Optional[str] = None) -> DrgAttachment
func GetDrgAttachment(ctx *Context, name string, id IDInput, state *DrgAttachmentState, opts ...ResourceOption) (*DrgAttachment, error)
public static DrgAttachment Get(string name, Input<string> id, DrgAttachmentState? state, CustomResourceOptions? opts = null)
public static DrgAttachment get(String name, Output<String> id, DrgAttachmentState 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 - The OCID of the compartment containing the DRG attachment.
- 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.
- Drg
Id string - The OCID of the DRG.
- Drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- Export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- Is
Cross boolTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- Network
Details DrgAttachment Network Details - (Updatable)
- Remove
Export boolDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- Route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- State string
- The DRG attachment's current state.
- Time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- Compartment
Id string - The OCID of the compartment containing the DRG attachment.
- 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.
- Drg
Id string - The OCID of the DRG.
- Drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- Export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- Is
Cross boolTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- Network
Details DrgAttachment Network Details Args - (Updatable)
- Remove
Export boolDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- Route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- State string
- The DRG attachment's current state.
- Time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- compartment
Id String - The OCID of the compartment containing the DRG attachment.
- 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.
- drg
Id String - The OCID of the DRG.
- drg
Route StringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg StringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- is
Cross BooleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- network
Details DrgAttachment Network Details - (Updatable)
- remove
Export BooleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table StringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- state String
- The DRG attachment's current state.
- time
Created String - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- compartment
Id string - The OCID of the compartment containing the DRG attachment.
- {[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.
- drg
Id string - The OCID of the DRG.
- drg
Route stringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg stringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- {[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"}
- is
Cross booleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- network
Details DrgAttachment Network Details - (Updatable)
- remove
Export booleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table stringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- state string
- The DRG attachment's current state.
- time
Created string - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id string - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- compartment_
id str - The OCID of the compartment containing the DRG attachment.
- 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.
- drg_
id str - The OCID of the DRG.
- drg_
route_ strtable_ id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export_
drg_ strroute_ distribution_ id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- is_
cross_ booltenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- network_
details core.Drg Attachment Network Details Args - (Updatable)
- remove_
export_ booldrg_ route_ distribution_ trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route_
table_ strid (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- state str
- The DRG attachment's current state.
- time_
created str - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn_
id str - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
- compartment
Id String - The OCID of the compartment containing the DRG attachment.
- 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.
- drg
Id String - The OCID of the DRG.
- drg
Route StringTable Id (Updatable) The OCID of the DRG route table that is assigned to this attachment.
The DRG route table manages traffic inside the DRG.
- export
Drg StringRoute Distribution Id - (Updatable) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment. This field cannot be set by the user while creating the resource and gets a default value on creation. This can be only be updated to its default value. If this fields needs to be set to null, remove_export_drg_route_distribution_trigger needs to be used.
- 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"}
- is
Cross BooleanTenancy - Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example:
false
- network
Details Property Map - (Updatable)
- remove
Export BooleanDrg Route Distribution Trigger (Updatable) An optional property when set to true during update disables the export of route Distribution by setting export_drg_route_distribution_id to null.
** 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
- route
Table StringId (Updatable) The OCID of the route table used by the DRG attachment.
If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see:
- Transit Routing: Access to Multiple VCNs in Same Region
- Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
- state String
- The DRG attachment's current state.
- time
Created String - The date and time the DRG attachment was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- vcn
Id String - (Optional) The OCID of the VCN. This field is deprecated. Instead, use the
networkDetails
field to specify the OCID of the attached resource.
Supporting Types
DrgAttachmentNetworkDetails, DrgAttachmentNetworkDetailsArgs
- Type string
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- Id string
- The OCID of the network attached to the DRG.
- Ids List<string>
- The OCID of the target IPSec tunnel attachment.
- Ipsec
Connection stringId - The IPSec connection that contains the attached IPSec tunnel.
- Route
Table stringId (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- Transport
Attachment stringId - The OCID of the virtual circuit's DRG attachment.
- Transport
Only boolMode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- Vcn
Route stringType - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
- Type string
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- Id string
- The OCID of the network attached to the DRG.
- Ids []string
- The OCID of the target IPSec tunnel attachment.
- Ipsec
Connection stringId - The IPSec connection that contains the attached IPSec tunnel.
- Route
Table stringId (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- Transport
Attachment stringId - The OCID of the virtual circuit's DRG attachment.
- Transport
Only boolMode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- Vcn
Route stringType - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
- type String
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- id String
- The OCID of the network attached to the DRG.
- ids List<String>
- The OCID of the target IPSec tunnel attachment.
- ipsec
Connection StringId - The IPSec connection that contains the attached IPSec tunnel.
- route
Table StringId (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- transport
Attachment StringId - The OCID of the virtual circuit's DRG attachment.
- transport
Only BooleanMode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- vcn
Route StringType - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
- type string
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- id string
- The OCID of the network attached to the DRG.
- ids string[]
- The OCID of the target IPSec tunnel attachment.
- ipsec
Connection stringId - The IPSec connection that contains the attached IPSec tunnel.
- route
Table stringId (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- transport
Attachment stringId - The OCID of the virtual circuit's DRG attachment.
- transport
Only booleanMode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- vcn
Route stringType - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
- type str
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- id str
- The OCID of the network attached to the DRG.
- ids Sequence[str]
- The OCID of the target IPSec tunnel attachment.
- ipsec_
connection_ strid - The IPSec connection that contains the attached IPSec tunnel.
- route_
table_ strid (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- transport_
attachment_ strid - The OCID of the virtual circuit's DRG attachment.
- transport_
only_ boolmode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- vcn_
route_ strtype - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
- type String
- (Updatable) The type can be one of these values:
IPSEC_TUNNEL
,LOOPBACK
,REMOTE_PEERING_CONNECTION
,VCN
,VIRTUAL_CIRCUIT
- id String
- The OCID of the network attached to the DRG.
- ids List<String>
- The OCID of the target IPSec tunnel attachment.
- ipsec
Connection StringId - The IPSec connection that contains the attached IPSec tunnel.
- route
Table StringId (Updatable) This is the OCID of the route table that is used to route the traffic as it enters a VCN through this attachment.
For information about why you would associate a route table with a DRG attachment, see Advanced Scenario: Transit Routing. For information about why you would associate a route table with a DRG attachment, see:
- transport
Attachment StringId - The OCID of the virtual circuit's DRG attachment.
- transport
Only BooleanMode - Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example:
true
- vcn
Route StringType - (Updatable) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
Import
DrgAttachments can be imported using the id
, e.g.
$ pulumi import oci:Core/drgAttachment:DrgAttachment test_drg_attachment "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.