Skip to content

Commit 0295f6b

Browse files
Exempted - Docs changes from Github PRs
1 parent a86e68d commit 0295f6b

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

website/docs/d/core_vcns.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The following attributes are exported:
5050
The following attributes are exported:
5151

5252
* `byoipv6cidr_blocks` - The list of BYOIPv6 prefixes required to create a VCN that uses BYOIPv6 ranges.
53-
* `cidr_block` - Deprecated. The first CIDR IP address from cidrBlocks. Example: `172.16.0.0/16`
53+
* `cidr_block` - Deprecated. The first CIDR IP address from cidr_blocks. Example: `172.16.0.0/16`
5454
* `cidr_blocks` - The list of IPv4 CIDR blocks the VCN will use.
5555
* `compartment_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the VCN.
5656
* `default_dhcp_options_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the VCN's default set of DHCP options.

website/docs/index.html.markdown

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ The Oracle Cloud Infrastructure provider is used to interact with the resources
1010

1111
The Oracle Cloud Infrastructure (OCI) provider allows you to use Terraform to interact with [Oracle Cloud Infrastructure](https://cloud.oracle.com/cloud-infrastructure) resources. Wherever you use a Terraform distribution you can use the OCI Terraform provider, including [Terraform Cloud](https://www.terraform.io/docs/cloud/index.html) and the OCI [Resource Manager](#resource-manager).
1212

13+
To learn the basics of Terraform using this provider, follow the
14+
hands-on [get started tutorials](https://learn.hashicorp.com/tutorials/terraform/infrastructure-as-code?in=terraform/oci-get-started) on HashiCorp's Learn platform.
15+
1316
## Terraform CLI
1417

1518
For details on configuring the OCI Terraform provider and using it with the Terraform CLI, refer to the [official OCI Terraform provider documentation](https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/terraform.htm), which includes:

website/docs/r/core_internet_gateway.html.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ resource "oci_core_internet_gateway" "test_internet_gateway" {
4444
enabled = var.internet_gateway_enabled
4545
defined_tags = {"Operations.CostCenter"= "42"}
4646
display_name = var.internet_gateway_display_name
47-
enabled = var.internet_gateway_enabled
4847
freeform_tags = {"Department"= "Finance"}
4948
route_table_id = oci_core_route_table.test_route_table.id
5049
}

website/docs/r/core_private_ip.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "oci_core_private_ip" "test_private_ip" {
2727
hostname_label = var.private_ip_hostname_label
2828
ip_address = var.private_ip_ip_address
2929
vlan_id = oci_core_vlan.test_vlan.id
30-
vnic_id = oci_core_vnic_attachment.test_vnic_attachment.id
30+
vnic_id = oci_core_vnic_attachment.test_vnic_attachment.vnic_id
3131
}
3232
```
3333

website/docs/r/core_vcn.html.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ The following arguments are supported:
8383
* `byoipv6cidr_details` - (Optional) The list of BYOIPv6 OCIDs and BYOIPv6 prefixes required to create a VCN that uses BYOIPv6 address ranges.
8484
* `byoipv6range_id` - (Required) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the `ByoipRange` resource to which the CIDR block belongs.
8585
* `ipv6cidr_block` - (Required) An IPv6 prefix required to create a VCN with a BYOIP prefix. It could be the whole prefix identified in `byoipv6RangeId`, or a subrange. Example: `2001:0db8:0123::/48`
86-
* `cidr_block` - (Optional) **Deprecated.** Do *not* set this value. Use `cidrBlocks` instead. Example: `10.0.0.0/16`
86+
* `cidr_block` - (Optional) **Deprecated.** Do *not* set this value. Use `cidr_blocks` instead. Example: `10.0.0.0/16`
8787
* `cidr_blocks` - (Optional) (Updatable) The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria:
8888
* The CIDR blocks must be valid.
8989
* They must not overlap with each other or with the on-premises network CIDR block.
90-
* The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidrBlock and cidrBlocks. Note: cidr_blocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined. new cidr_block to be added must be placed at the end of the list. Once you migrate to using `cidr_blocks` from `cidr_block`, you will not be able to switch back.
91-
**Important:** Do *not* specify a value for `cidrBlock`. Use this parameter instead.
90+
* The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. It is an error to set both cidr_block and cidr_blocks. Note: cidr_blocks update must be restricted to one operation at a time (either add/remove or modify one single cidr_block) or the operation will be declined. new cidr_block to be added must be placed at the end of the list. Once you migrate to using `cidr_blocks` from `cidr_block`, you will not be able to switch back.
91+
**Important:** Do *not* specify a value for `cidr_block`. Use this parameter instead.
9292
* `compartment_id` - (Required) (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the VCN.
9393
* `defined_tags` - (Optional) (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
9494
* `display_name` - (Optional) (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -104,7 +104,7 @@ The following arguments are supported:
104104
* Multiple CIDR blocks must not overlap each other or the on-premises network prefix.
105105
* The number of CIDR blocks must not exceed the limit of IPv6 prefixes allowed to a VCN.
106106

107-
**Important:** Do *not* specify a value for `ipv6CidrBlock`. Use this parameter instead.
107+
**Important:** Do *not* specify a value for `ipv6cidr_block`. Use this parameter instead.
108108
* `is_ipv6enabled` - (Optional) Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). Example: `true`
109109
* `is_oracle_gua_allocation_enabled` - (Optional) Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
110110

@@ -117,7 +117,7 @@ Any change to a property that does not support update will force the destruction
117117
The following attributes are exported:
118118

119119
* `byoipv6cidr_blocks` - The list of BYOIPv6 prefixes required to create a VCN that uses BYOIPv6 ranges.
120-
* `cidr_block` - Deprecated. The first CIDR IP address from cidrBlocks. Example: `172.16.0.0/16`
120+
* `cidr_block` - Deprecated. The first CIDR IP address from cidr_blocks. Example: `172.16.0.0/16`
121121
* `cidr_blocks` - The list of IPv4 CIDR blocks the VCN will use.
122122
* `compartment_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the VCN.
123123
* `default_dhcp_options_id` - The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the VCN's default set of DHCP options.

0 commit comments

Comments
 (0)