You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* resource/aws_kinesisanalyticsv2_application: Support `FLINK-1_20` as a valid value for `runtime_environment` ([#45356](https://github.com/hashicorp/terraform-provider-aws/issues/45356))
21
21
* resource/aws_lambda_capacity_provider: Add resource identity support ([#45456](https://github.com/hashicorp/terraform-provider-aws/issues/45456))
22
+
* resource/aws_odb_network_peering_connection: Add network peering creation using `odb_network_arn` for resource sharing model. ([#45509](https://github.com/hashicorp/terraform-provider-aws/issues/45509))
Copy file name to clipboardExpand all lines: website/docs/r/odb_network_peering_connection.html.markdown
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: |-
8
8
9
9
# Resource: aws_odb_network_peering_connection
10
10
11
-
Terraform resource for managing oracle database network peering resource in AWS.
11
+
Terraform resource for managing oracle database network peering resource in AWS. If underlying odb network is shared, ARN must be used while creating network peering.
12
12
13
13
You can find out more about Oracle Database@AWS from [User Guide](https://docs.aws.amazon.com/odb/latest/UserGuide/what-is-odb.html).
*`odb_network_id` - (Required) The unique identifier of the ODB network that initiates the peering connection. A sample ID is `odbpcx-abcdefgh12345678`. Changing this will force Terraform to create a new resource.
35
-
*`peer_network_id` - (Required) The unique identifier of the ODB peering connection. Changing this will force Terraform to create a new resource.
34
+
*`peer_network_id` - (Required) The unique identifier of the ODB peering connection. Changing this will force Terraform to create a new resource. Either odb_network_id or odb_network_arn should be used.
36
35
*`display_name` - (Required) Display name of the ODB network peering connection. Changing this will force Terraform to create a new resource.
37
36
38
37
The following arguments are optional:
39
38
39
+
*`odb_network_id` - (Optional) The unique identifier of the ODB network that initiates the peering connection. A sample ID is `odbpcx-abcdefgh12345678`. Changing this will force Terraform to create a new resource.
40
+
*`odb_network_arn` - (Optional) ARN of the ODB network that initiates the peering connection. Changing this will force Terraform to create a new resource. Either odb_network_id or odb_network_arn should be used.
40
41
*`region` - (Optional) Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference).
41
42
*`tags` - (Optional) A map of tags to assign to the resource. If configured with a provider [`default_tags` configuration block](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#default_tags-configuration-block) present, tags with matching keys will overwrite those defined at the provider-level.
42
43
@@ -47,7 +48,6 @@ This data source exports the following attributes in addition to the arguments a
47
48
*`id` - Unique identifier of odb network peering connection.
48
49
*`status` - Status of the ODB network peering connection.
49
50
*`status_reason` - The reason for the current status of the ODB peering connection.
50
-
*`odb_network_arn` - ARN of the ODB network peering connection.
51
51
*`peer_network_arn` - ARN of the peer network peering connection.
52
52
*`odb_peering_connection_type` - Type of the ODB peering connection.
53
53
*`created_at` - Created time of the ODB network peering connection.
0 commit comments