Skip to content

Commit 5220bab

Browse files
authored
Merge pull request #12 from oracle-community/sync-main-3
Sync main 3
2 parents 86a2bae + d24695d commit 5220bab

File tree

68 files changed

+1837
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1837
-120
lines changed

.changelog/43715.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
```release-note:new-resource
2+
aws_odb_network
3+
```
4+
5+
```release-note:new-data-source
6+
aws_odb_network
7+
```

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
FEATURES:
44

5+
* **New Data Source:** `aws_odb_cloud_exadata_infrastructure` ([#43650](https://github.com/hashicorp/terraform-provider-aws/issues/43650))
56
* **New Resource:** `aws_controltower_baseline` ([#42397](https://github.com/hashicorp/terraform-provider-aws/issues/42397))
7+
* **New Resource:** `aws_odb_cloud_exadata_infrastructure` ([#43650](https://github.com/hashicorp/terraform-provider-aws/issues/43650))
68

79
ENHANCEMENTS:
810

docs/ai-agent-guides/parameterized-resource-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ resource "<resource-name>" "example" {
9494

9595
#### Optional
9696

97-
- `account_id` (String) AWS Account where this resource is managed.
98-
- `region` (String) Region where this resource is managed.
97+
* `account_id` (String) AWS Account where this resource is managed.
98+
* `region` (String) Region where this resource is managed.
9999
````
100100

101101
- The instructions for importing by `identity`, including the identity schema, should appear before instructions for import blocks with an `id` argument or importing via the CLI.

examples/odb/odb_network.tf

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Copyright (c) HashiCorp, Inc.
2+
# SPDX-License-Identifier: MPL-2.0
3+
4+
5+
# odb network without managed service
6+
resource "aws_odb_network" "test_1" {
7+
display_name = "odb-my-net"
8+
availability_zone_id = "use1-az6"
9+
client_subnet_cidr = "10.2.0.0/24"
10+
backup_subnet_cidr = "10.2.1.0/24"
11+
s3_access = "DISABLED"
12+
zero_etl_access = "DISABLED"
13+
tags = {
14+
"env" = "dev"
15+
}
16+
}
17+
18+
# odb network with managed service
19+
resource "aws_odb_network" "test_2" {
20+
display_name = "odb-my-net"
21+
availability_zone_id = "use1-az6"
22+
client_subnet_cidr = "10.2.0.0/24"
23+
backup_subnet_cidr = "10.2.1.0/24"
24+
s3_access = "ENABLED"
25+
zero_etl_access = "ENABLED"
26+
tags = {
27+
"env" = "dev"
28+
}
29+
}

0 commit comments

Comments
 (0)