Skip to content

Commit ce3ab0a

Browse files
committed
odb network resource and data source
1 parent bfdc400 commit ce3ab0a

File tree

8 files changed

+1874
-0
lines changed

8 files changed

+1874
-0
lines changed

examples/odb/odb_network.tf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright © 2025, Oracle and/or its affiliates. All rights reserved.
2+
3+
# odb network without managed service
4+
resource "aws_odb_network" "test" {
5+
display_name = "odb-my-net"
6+
availability_zone_id = "use1-az6"
7+
client_subnet_cidr = "10.2.0.0/24"
8+
backup_subnet_cidr = "10.2.1.0/24"
9+
s3_access = "DISABLED"
10+
zero_etl_access = "DISABLED"
11+
tags = {
12+
"env" = "dev"
13+
}
14+
}
15+
16+
# odb network with managed service
17+
resource "aws_odb_network" "test" {
18+
display_name = "odb-my-net"
19+
availability_zone_id = "use1-az6"
20+
client_subnet_cidr = "10.2.0.0/24"
21+
backup_subnet_cidr = "10.2.1.0/24"
22+
s3_access = "ENABLED"
23+
zero_etl_access = "ENABLED"
24+
tags = {
25+
"env" = "dev"
26+
}
27+
}

0 commit comments

Comments
 (0)