Skip to content

Commit e984cd6

Browse files
Rakhi Narayanjotruon
authored andcommitted
Fixes for documentation - TERSI 1007
1 parent f3363a5 commit e984cd6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

website/docs/r/core_drg_attachment.html.markdown

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,12 @@ resource "oci_core_drg_attachment" "test_drg_attachment" {
3737
freeform_tags = {"Department"= "Finance"}
3838
network_details {
3939
#Required
40-
id = var.drg_attachment_network_details_id
40+
id = oci_core_vcn.test_vcn.id
4141
type = var.drg_attachment_network_details_type
4242
4343
#Optional
4444
route_table_id = oci_core_route_table.test_route_table.id
4545
}
46-
route_table_id = oci_core_route_table.test_route_table.id
47-
vcn_id = oci_core_vcn.test_vcn.id
4846
}
4947
```
5048

@@ -69,13 +67,13 @@ The following arguments are supported:
6967
* [Transit Routing: Access to Multiple VCNs in Same Region](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm)
7068
* [Transit Routing: Private Access to Oracle Services](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm)
7169
* `type` - (Required) (Updatable) The type can be one of these values: `IPSEC_TUNNEL`, `REMOTE_PEERING_CONNECTION`, `VCN`, `VIRTUAL_CIRCUIT`
72-
* `route_table_id` - (Optional) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table used by the DRG attachment.
70+
* `route_table_id` - (Deprecated) (Optional) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the route table used by the DRG attachment.
7371

7472
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:
7573
* [Transit Routing: Access to Multiple VCNs in Same Region](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm)
7674
* [Transit Routing: Private Access to Oracle Services](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm)
7775
This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
78-
* `vcn_id` - (Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. This field is deprecated. Instead, use the `networkDetails` field to specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the attached resource.
76+
* `vcn_id` - (Deprecated) (Optional) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN. This field is deprecated. Instead, use the `networkDetails` field to specify the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the attached resource.
7977
* `remove_export_drg_route_distribution_trigger` - (Optional) (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.
8078

8179
** IMPORTANT **

0 commit comments

Comments
 (0)