Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
ce3ab0a
odb network resource and data source
ab-cs13 Aug 5, 2025
55c4e78
odb network data source description added
ab-cs13 Aug 5, 2025
20d02a6
change log added
ab-cs13 Aug 5, 2025
8aa77f7
managed service and created_at moved to autoflex.
ab-cs13 Aug 20, 2025
fed98fd
Merge remote-tracking branch 'origin/main' into odb-network
ab-cs13 Aug 21, 2025
9ce515c
odb network refactored according to feedback received for exadata-infra
ab-cs13 Aug 23, 2025
e1e1093
setting the partial state if error occurs. This way the resource is t…
ab-cs13 Aug 25, 2025
74ff422
fixed linting issues for odb network.
ab-cs13 Aug 26, 2025
28e4e96
fixed linting issues for odb network.
ab-cs13 Aug 26, 2025
1d844d2
fixed linting issues for odb network.
ab-cs13 Aug 26, 2025
9c91ca7
added availability zone
ab-cs13 Sep 2, 2025
230335e
review feedback addressed.
ab-cs13 Sep 3, 2025
35724d5
updated copyright header
ab-cs13 Sep 10, 2025
3632cd8
docs: add note to vpc_config section
stefanfreitag Sep 13, 2025
4455a18
r/aws_lambda_function(doc): tidy `vpc_config` note formatting
jar-b Sep 15, 2025
4176cc1
Merge remote-tracking branch 'origin' into odb-network
ab-cs13 Sep 16, 2025
2d91a81
odb-network added to service_package_gen.go
ab-cs13 Sep 16, 2025
19042d3
Merge pull request #44274 from stefanfreitag/d-aws_lambda_function-ad…
jar-b Sep 16, 2025
f771ff6
docs: tidy up optional identity schema (#44290)
jar-b Sep 16, 2025
d96fc93
Update CHANGELOG.md for #44290
Sep 16, 2025
d24695d
Merge pull request #43715 from oracle-community/odb-network
johnsonaj Sep 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changelog/43715.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:new-resource
aws_odb_network
```

```release-note:new-data-source
aws_odb_network
```
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

FEATURES:

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

ENHANCEMENTS:

Expand Down
4 changes: 2 additions & 2 deletions docs/ai-agent-guides/parameterized-resource-identity.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ resource "<resource-name>" "example" {

#### Optional

- `account_id` (String) AWS Account where this resource is managed.
- `region` (String) Region where this resource is managed.
* `account_id` (String) AWS Account where this resource is managed.
* `region` (String) Region where this resource is managed.
````

- 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.
Expand Down
29 changes: 29 additions & 0 deletions examples/odb/odb_network.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0


# odb network without managed service
resource "aws_odb_network" "test_1" {
display_name = "odb-my-net"
availability_zone_id = "use1-az6"
client_subnet_cidr = "10.2.0.0/24"
backup_subnet_cidr = "10.2.1.0/24"
s3_access = "DISABLED"
zero_etl_access = "DISABLED"
tags = {
"env" = "dev"
}
}

# odb network with managed service
resource "aws_odb_network" "test_2" {
display_name = "odb-my-net"
availability_zone_id = "use1-az6"
client_subnet_cidr = "10.2.0.0/24"
backup_subnet_cidr = "10.2.1.0/24"
s3_access = "ENABLED"
zero_etl_access = "ENABLED"
tags = {
"env" = "dev"
}
}
Loading
Loading