published on Thursday, Sep 10, 2026 by Pulumi
published on Thursday, Sep 10, 2026 by Pulumi
Resource for managing odb Network resource in AWS for Oracle Database@AWS.
Example Usage
Disabled S3 and Zero-ETL Access
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.odb.Network("example", {
displayName: "odb-my-net",
availabilityZoneId: "use1-az6",
clientSubnetCidr: "10.2.0.0/24",
backupSubnetCidr: "10.2.1.0/24",
s3Access: "DISABLED",
zeroEtlAccess: "DISABLED",
tags: {
env: "dev",
},
});
import pulumi
import pulumi_aws as aws
example = aws.odb.Network("example",
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",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := odb.NewNetwork(ctx, "example", &odb.NetworkArgs{
DisplayName: pulumi.String("odb-my-net"),
AvailabilityZoneId: pulumi.String("use1-az6"),
ClientSubnetCidr: pulumi.String("10.2.0.0/24"),
BackupSubnetCidr: pulumi.String("10.2.1.0/24"),
S3Access: pulumi.String("DISABLED"),
ZeroEtlAccess: pulumi.String("DISABLED"),
Tags: pulumi.StringMap{
"env": pulumi.String("dev"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Odb.Network("example", new()
{
DisplayName = "odb-my-net",
AvailabilityZoneId = "use1-az6",
ClientSubnetCidr = "10.2.0.0/24",
BackupSubnetCidr = "10.2.1.0/24",
S3Access = "DISABLED",
ZeroEtlAccess = "DISABLED",
Tags =
{
{ "env", "dev" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.odb.Network;
import com.pulumi.aws.odb.NetworkArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Network("example", NetworkArgs.builder()
.displayName("odb-my-net")
.availabilityZoneId("use1-az6")
.clientSubnetCidr("10.2.0.0/24")
.backupSubnetCidr("10.2.1.0/24")
.s3Access("DISABLED")
.zeroEtlAccess("DISABLED")
.tags(Map.of("env", "dev"))
.build());
}
}
resources:
example:
type: aws:odb:Network
properties:
displayName: odb-my-net
availabilityZoneId: use1-az6
clientSubnetCidr: 10.2.0.0/24
backupSubnetCidr: 10.2.1.0/24
s3Access: DISABLED
zeroEtlAccess: DISABLED
tags:
env: dev
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_odb_network" "example" {
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"
}
}
Enabled S3 and Zero-ETL Access
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.odb.Network("example", {
displayName: "odb-my-net",
availabilityZoneId: "use1-az6",
clientSubnetCidr: "10.2.0.0/24",
backupSubnetCidr: "10.2.1.0/24",
s3Access: "ENABLED",
zeroEtlAccess: "ENABLED",
tags: {
env: "dev",
},
});
import pulumi
import pulumi_aws as aws
example = aws.odb.Network("example",
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",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := odb.NewNetwork(ctx, "example", &odb.NetworkArgs{
DisplayName: pulumi.String("odb-my-net"),
AvailabilityZoneId: pulumi.String("use1-az6"),
ClientSubnetCidr: pulumi.String("10.2.0.0/24"),
BackupSubnetCidr: pulumi.String("10.2.1.0/24"),
S3Access: pulumi.String("ENABLED"),
ZeroEtlAccess: pulumi.String("ENABLED"),
Tags: pulumi.StringMap{
"env": pulumi.String("dev"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.Odb.Network("example", new()
{
DisplayName = "odb-my-net",
AvailabilityZoneId = "use1-az6",
ClientSubnetCidr = "10.2.0.0/24",
BackupSubnetCidr = "10.2.1.0/24",
S3Access = "ENABLED",
ZeroEtlAccess = "ENABLED",
Tags =
{
{ "env", "dev" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.odb.Network;
import com.pulumi.aws.odb.NetworkArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Network("example", NetworkArgs.builder()
.displayName("odb-my-net")
.availabilityZoneId("use1-az6")
.clientSubnetCidr("10.2.0.0/24")
.backupSubnetCidr("10.2.1.0/24")
.s3Access("ENABLED")
.zeroEtlAccess("ENABLED")
.tags(Map.of("env", "dev"))
.build());
}
}
resources:
example:
type: aws:odb:Network
properties:
displayName: odb-my-net
availabilityZoneId: use1-az6
clientSubnetCidr: 10.2.0.0/24
backupSubnetCidr: 10.2.1.0/24
s3Access: ENABLED
zeroEtlAccess: ENABLED
tags:
env: dev
pulumi {
required_providers {
aws = {
source = "pulumi/aws"
}
}
}
resource "aws_odb_network" "example" {
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"
}
}
Create Network Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);@overload
def Network(resource_name: str,
args: NetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Network(resource_name: str,
opts: Optional[ResourceOptions] = None,
s3_access: Optional[str] = None,
availability_zone_id: Optional[str] = None,
backup_subnet_cidr: Optional[str] = None,
zero_etl_access: Optional[str] = None,
client_subnet_cidr: Optional[str] = None,
display_name: Optional[str] = None,
kms_policy_document: Optional[str] = None,
delete_associated_resources: Optional[bool] = None,
default_dns_prefix: Optional[str] = None,
custom_domain_name: Optional[str] = None,
cross_region_s3_restore_sources_accesses: Optional[Sequence[str]] = None,
region: Optional[str] = None,
availability_zone: Optional[str] = None,
s3_policy_document: Optional[str] = None,
sts_access: Optional[str] = None,
sts_policy_document: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkTimeoutsArgs] = None,
kms_access: Optional[str] = None)func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: aws:odb:Network
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aws_odb_network" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkResource = new Aws.Odb.Network("networkResource", new()
{
S3Access = "string",
AvailabilityZoneId = "string",
BackupSubnetCidr = "string",
ZeroEtlAccess = "string",
ClientSubnetCidr = "string",
DisplayName = "string",
KmsPolicyDocument = "string",
DeleteAssociatedResources = false,
DefaultDnsPrefix = "string",
CustomDomainName = "string",
CrossRegionS3RestoreSourcesAccesses = new[]
{
"string",
},
Region = "string",
AvailabilityZone = "string",
S3PolicyDocument = "string",
StsAccess = "string",
StsPolicyDocument = "string",
Tags =
{
{ "string", "string" },
},
Timeouts = new Aws.Odb.Inputs.NetworkTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
KmsAccess = "string",
});
example, err := odb.NewNetwork(ctx, "networkResource", &odb.NetworkArgs{
S3Access: pulumi.String("string"),
AvailabilityZoneId: pulumi.String("string"),
BackupSubnetCidr: pulumi.String("string"),
ZeroEtlAccess: pulumi.String("string"),
ClientSubnetCidr: pulumi.String("string"),
DisplayName: pulumi.String("string"),
KmsPolicyDocument: pulumi.String("string"),
DeleteAssociatedResources: pulumi.Bool(false),
DefaultDnsPrefix: pulumi.String("string"),
CustomDomainName: pulumi.String("string"),
CrossRegionS3RestoreSourcesAccesses: pulumi.StringArray{
pulumi.String("string"),
},
Region: pulumi.String("string"),
AvailabilityZone: pulumi.String("string"),
S3PolicyDocument: pulumi.String("string"),
StsAccess: pulumi.String("string"),
StsPolicyDocument: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Timeouts: &odb.NetworkTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
KmsAccess: pulumi.String("string"),
})
resource "aws_odb_network" "networkResource" {
lifecycle {
create_before_destroy = true
}
s3_access = "string"
availability_zone_id = "string"
backup_subnet_cidr = "string"
zero_etl_access = "string"
client_subnet_cidr = "string"
display_name = "string"
kms_policy_document = "string"
delete_associated_resources = false
default_dns_prefix = "string"
custom_domain_name = "string"
cross_region_s3_restore_sources_accesses = ["string"]
region = "string"
availability_zone = "string"
s3_policy_document = "string"
sts_access = "string"
sts_policy_document = "string"
tags = {
"string" = "string"
}
timeouts = {
create = "string"
delete = "string"
update = "string"
}
kms_access = "string"
}
var networkResource = new Network("networkResource", NetworkArgs.builder()
.s3Access("string")
.availabilityZoneId("string")
.backupSubnetCidr("string")
.zeroEtlAccess("string")
.clientSubnetCidr("string")
.displayName("string")
.kmsPolicyDocument("string")
.deleteAssociatedResources(false)
.defaultDnsPrefix("string")
.customDomainName("string")
.crossRegionS3RestoreSourcesAccesses("string")
.region("string")
.availabilityZone("string")
.s3PolicyDocument("string")
.stsAccess("string")
.stsPolicyDocument("string")
.tags(Map.of("string", "string"))
.timeouts(NetworkTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.kmsAccess("string")
.build());
network_resource = aws.odb.Network("networkResource",
s3_access="string",
availability_zone_id="string",
backup_subnet_cidr="string",
zero_etl_access="string",
client_subnet_cidr="string",
display_name="string",
kms_policy_document="string",
delete_associated_resources=False,
default_dns_prefix="string",
custom_domain_name="string",
cross_region_s3_restore_sources_accesses=["string"],
region="string",
availability_zone="string",
s3_policy_document="string",
sts_access="string",
sts_policy_document="string",
tags={
"string": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
kms_access="string")
const networkResource = new aws.odb.Network("networkResource", {
s3Access: "string",
availabilityZoneId: "string",
backupSubnetCidr: "string",
zeroEtlAccess: "string",
clientSubnetCidr: "string",
displayName: "string",
kmsPolicyDocument: "string",
deleteAssociatedResources: false,
defaultDnsPrefix: "string",
customDomainName: "string",
crossRegionS3RestoreSourcesAccesses: ["string"],
region: "string",
availabilityZone: "string",
s3PolicyDocument: "string",
stsAccess: "string",
stsPolicyDocument: "string",
tags: {
string: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
kmsAccess: "string",
});
type: aws:odb:Network
properties:
availabilityZone: string
availabilityZoneId: string
backupSubnetCidr: string
clientSubnetCidr: string
crossRegionS3RestoreSourcesAccesses:
- string
customDomainName: string
defaultDnsPrefix: string
deleteAssociatedResources: false
displayName: string
kmsAccess: string
kmsPolicyDocument: string
region: string
s3Access: string
s3PolicyDocument: string
stsAccess: string
stsPolicyDocument: string
tags:
string: string
timeouts:
create: string
delete: string
update: string
zeroEtlAccess: string
Network Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Network resource accepts the following input properties:
- Availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- Backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- Client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- Display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- S3Access string
- Configuration for Amazon S3 access from the ODB network.
- Zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - Cross
Region List<string>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- Custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - Default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- Delete
Associated boolResources - If set to true deletes associated OCI resources. Default false.
- Kms
Access string - Configuration for KMS access from the ODB network.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Sts
Access string - Configuration for STS access from the ODB network.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- Dictionary<string, string>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Timeouts
- Availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- Backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- Client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- Display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- S3Access string
- Configuration for Amazon S3 access from the ODB network.
- Zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - Cross
Region []stringS3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- Custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - Default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- Delete
Associated boolResources - If set to true deletes associated OCI resources. Default false.
- Kms
Access string - Configuration for KMS access from the ODB network.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Sts
Access string - Configuration for STS access from the ODB network.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- map[string]string
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Timeouts
Network
Timeouts Args
- availability_
zone_ stringid - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup_
subnet_ stringcidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client_
subnet_ stringcidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- display_
name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- s3_
access string - Configuration for Amazon S3 access from the ODB network.
- zero_
etl_ stringaccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability_
zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - cross_
region_ list(string)s3_ restore_ sources_ accesses - List of regions enabled for cross-region restore in the ODB network.
- custom_
domain_ stringname - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default_
dns_ stringprefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete_
associated_ boolresources - If set to true deletes associated OCI resources. Default false.
- kms_
access string - Configuration for KMS access from the ODB network.
- kms_
policy_ stringdocument - Endpoint policy for KMS access from the ODB network.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
policy_ stringdocument - Endpoint policy for Amazon S3 access from the ODB network.
- sts_
access string - Configuration for STS access from the ODB network.
- sts_
policy_ stringdocument - Endpoint policy for STS access from the ODB network.
- map(string)
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts object
- availability
Zone StringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet StringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet StringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- display
Name String - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- s3Access String
- Configuration for Amazon S3 access from the ODB network.
- zero
Etl StringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone String - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - cross
Region List<String>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain StringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns StringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated BooleanResources - If set to true deletes associated OCI resources. Default false.
- kms
Access String - Configuration for KMS access from the ODB network.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- sts
Access String - Configuration for STS access from the ODB network.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
- Map<String,String>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts
- availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- s3Access string
- Configuration for Amazon S3 access from the ODB network.
- zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - cross
Region string[]S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated booleanResources - If set to true deletes associated OCI resources. Default false.
- kms
Access string - Configuration for KMS access from the ODB network.
- kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- sts
Access string - Configuration for STS access from the ODB network.
- sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- {[key: string]: string}
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts
- availability_
zone_ strid - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup_
subnet_ strcidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client_
subnet_ strcidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- display_
name str - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- s3_
access str - Configuration for Amazon S3 access from the ODB network.
- zero_
etl_ straccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability_
zone str - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - cross_
region_ Sequence[str]s3_ restore_ sources_ accesses - List of regions enabled for cross-region restore in the ODB network.
- custom_
domain_ strname - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default_
dns_ strprefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete_
associated_ boolresources - If set to true deletes associated OCI resources. Default false.
- kms_
access str - Configuration for KMS access from the ODB network.
- kms_
policy_ strdocument - Endpoint policy for KMS access from the ODB network.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
policy_ strdocument - Endpoint policy for Amazon S3 access from the ODB network.
- sts_
access str - Configuration for STS access from the ODB network.
- sts_
policy_ strdocument - Endpoint policy for STS access from the ODB network.
- Mapping[str, str]
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts
Network
Timeouts Args
- availability
Zone StringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet StringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet StringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- display
Name String - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- s3Access String
- Configuration for Amazon S3 access from the ODB network.
- zero
Etl StringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- availability
Zone String - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - cross
Region List<String>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain StringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns StringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated BooleanResources - If set to true deletes associated OCI resources. Default false.
- kms
Access String - Configuration for KMS access from the ODB network.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- sts
Access String - Configuration for STS access from the ODB network.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
- Map<String>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:
- Arn string
- ARN of the odb network resource.
- Created
At string - Date and time when the ODB network was created.
- Ec2Placement
Group List<string>Ids - List of EC2 placement group IDs associated with the ODB network.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Services List<NetworkManaged Service> - Managed services configuration for the ODB network. See
managedServicesBlock below. - Oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - Oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- Peered
Cidrs List<string> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- Percent
Progress double - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Status string
- Status of the Zero-ETL access.
- Status
Reason string - Additional information about the current status of the ODB network.
- Dictionary<string, string>
- Arn string
- ARN of the odb network resource.
- Created
At string - Date and time when the ODB network was created.
- Ec2Placement
Group []stringIds - List of EC2 placement group IDs associated with the ODB network.
- Id string
- The provider-assigned unique ID for this managed resource.
- Managed
Services []NetworkManaged Service - Managed services configuration for the ODB network. See
managedServicesBlock below. - Oci
Dns []NetworkForwarding Configs Oci Dns Forwarding Config - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - Oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- Peered
Cidrs []string - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- Percent
Progress float64 - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Status string
- Status of the Zero-ETL access.
- Status
Reason string - Additional information about the current status of the ODB network.
- map[string]string
- arn string
- ARN of the odb network resource.
- created_
at string - Date and time when the ODB network was created.
- ec2_
placement_ list(string)group_ ids - List of EC2 placement group IDs associated with the ODB network.
- id string
- The provider-assigned unique ID for this managed resource.
- managed_
services list(object) - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci_
dns_ list(object)forwarding_ configs - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci_
network_ stringanchor_ id - Unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stringanchor_ url - URL of the OCI network anchor for the ODB network.
- oci_
resource_ stringanchor_ name - Name of the OCI resource anchor for the ODB network.
- oci_
vcn_ stringid - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ stringurl - URL of the OCI VCN for the ODB network.
- peered_
cidrs list(string) - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent_
progress number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status string
- Status of the Zero-ETL access.
- status_
reason string - Additional information about the current status of the ODB network.
- map(string)
- arn String
- ARN of the odb network resource.
- created
At String - Date and time when the ODB network was created.
- ec2Placement
Group List<String>Ids - List of EC2 placement group IDs associated with the ODB network.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Services List<NetworkManaged Service> - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network StringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress Double - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status String
- Status of the Zero-ETL access.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String,String>
- arn string
- ARN of the odb network resource.
- created
At string - Date and time when the ODB network was created.
- ec2Placement
Group string[]Ids - List of EC2 placement group IDs associated with the ODB network.
- id string
- The provider-assigned unique ID for this managed resource.
- managed
Services NetworkManaged Service[] - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns NetworkForwarding Configs Oci Dns Forwarding Config[] - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs string[] - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status string
- Status of the Zero-ETL access.
- status
Reason string - Additional information about the current status of the ODB network.
- {[key: string]: string}
- arn str
- ARN of the odb network resource.
- created_
at str - Date and time when the ODB network was created.
- ec2_
placement_ Sequence[str]group_ ids - List of EC2 placement group IDs associated with the ODB network.
- id str
- The provider-assigned unique ID for this managed resource.
- managed_
services Sequence[NetworkManaged Service] - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci_
dns_ Sequence[Networkforwarding_ configs Oci Dns Forwarding Config] - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci_
network_ stranchor_ id - Unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stranchor_ url - URL of the OCI network anchor for the ODB network.
- oci_
resource_ stranchor_ name - Name of the OCI resource anchor for the ODB network.
- oci_
vcn_ strid - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ strurl - URL of the OCI VCN for the ODB network.
- peered_
cidrs Sequence[str] - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent_
progress float - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status str
- Status of the Zero-ETL access.
- status_
reason str - Additional information about the current status of the ODB network.
- Mapping[str, str]
- arn String
- ARN of the odb network resource.
- created
At String - Date and time when the ODB network was created.
- ec2Placement
Group List<String>Ids - List of EC2 placement group IDs associated with the ODB network.
- id String
- The provider-assigned unique ID for this managed resource.
- managed
Services List<Property Map> - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns List<Property Map>Forwarding Configs - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network StringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress Number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- status String
- Status of the Zero-ETL access.
- status
Reason String - Additional information about the current status of the ODB network.
- Map<String>
Look up Existing Network Resource
Get an existing Network resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkState, opts?: CustomResourceOptions): Network@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
availability_zone: Optional[str] = None,
availability_zone_id: Optional[str] = None,
backup_subnet_cidr: Optional[str] = None,
client_subnet_cidr: Optional[str] = None,
created_at: Optional[str] = None,
cross_region_s3_restore_sources_accesses: Optional[Sequence[str]] = None,
custom_domain_name: Optional[str] = None,
default_dns_prefix: Optional[str] = None,
delete_associated_resources: Optional[bool] = None,
display_name: Optional[str] = None,
ec2_placement_group_ids: Optional[Sequence[str]] = None,
kms_access: Optional[str] = None,
kms_policy_document: Optional[str] = None,
managed_services: Optional[Sequence[NetworkManagedServiceArgs]] = None,
oci_dns_forwarding_configs: Optional[Sequence[NetworkOciDnsForwardingConfigArgs]] = None,
oci_network_anchor_id: Optional[str] = None,
oci_network_anchor_url: Optional[str] = None,
oci_resource_anchor_name: Optional[str] = None,
oci_vcn_id: Optional[str] = None,
oci_vcn_url: Optional[str] = None,
peered_cidrs: Optional[Sequence[str]] = None,
percent_progress: Optional[float] = None,
region: Optional[str] = None,
s3_access: Optional[str] = None,
s3_policy_document: Optional[str] = None,
status: Optional[str] = None,
status_reason: Optional[str] = None,
sts_access: Optional[str] = None,
sts_policy_document: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
timeouts: Optional[NetworkTimeoutsArgs] = None,
zero_etl_access: Optional[str] = None) -> Networkfunc GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)resources: _: type: aws:odb:Network get: id: ${id}import {
to = aws_odb_network.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- ARN of the odb network resource.
- Availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - Availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- Backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- Client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- Created
At string - Date and time when the ODB network was created.
- Cross
Region List<string>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- Custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - Default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- Delete
Associated boolResources - If set to true deletes associated OCI resources. Default false.
- Display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- Ec2Placement
Group List<string>Ids - List of EC2 placement group IDs associated with the ODB network.
- Kms
Access string - Configuration for KMS access from the ODB network.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Managed
Services List<NetworkManaged Service> - Managed services configuration for the ODB network. See
managedServicesBlock below. - Oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - Oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- Peered
Cidrs List<string> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- Percent
Progress double - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Access string
- Configuration for Amazon S3 access from the ODB network.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- Status
Reason string - Additional information about the current status of the ODB network.
- Sts
Access string - Configuration for STS access from the ODB network.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- Dictionary<string, string>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- Timeouts
Network
Timeouts - Zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Arn string
- ARN of the odb network resource.
- Availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - Availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- Backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- Client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- Created
At string - Date and time when the ODB network was created.
- Cross
Region []stringS3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- Custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - Default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- Delete
Associated boolResources - If set to true deletes associated OCI resources. Default false.
- Display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- Ec2Placement
Group []stringIds - List of EC2 placement group IDs associated with the ODB network.
- Kms
Access string - Configuration for KMS access from the ODB network.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Managed
Services []NetworkManaged Service Args - Managed services configuration for the ODB network. See
managedServicesBlock below. - Oci
Dns []NetworkForwarding Configs Oci Dns Forwarding Config Args - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - Oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- Oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- Oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- Oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- Oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- Peered
Cidrs []string - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- Percent
Progress float64 - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- S3Access string
- Configuration for Amazon S3 access from the ODB network.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- Status
Reason string - Additional information about the current status of the ODB network.
- Sts
Access string - Configuration for STS access from the ODB network.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- map[string]string
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- Timeouts
Network
Timeouts Args - Zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn string
- ARN of the odb network resource.
- availability_
zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - availability_
zone_ stringid - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup_
subnet_ stringcidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client_
subnet_ stringcidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- created_
at string - Date and time when the ODB network was created.
- cross_
region_ list(string)s3_ restore_ sources_ accesses - List of regions enabled for cross-region restore in the ODB network.
- custom_
domain_ stringname - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default_
dns_ stringprefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete_
associated_ boolresources - If set to true deletes associated OCI resources. Default false.
- display_
name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- ec2_
placement_ list(string)group_ ids - List of EC2 placement group IDs associated with the ODB network.
- kms_
access string - Configuration for KMS access from the ODB network.
- kms_
policy_ stringdocument - Endpoint policy for KMS access from the ODB network.
- managed_
services list(object) - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci_
dns_ list(object)forwarding_ configs - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci_
network_ stringanchor_ id - Unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stringanchor_ url - URL of the OCI network anchor for the ODB network.
- oci_
resource_ stringanchor_ name - Name of the OCI resource anchor for the ODB network.
- oci_
vcn_ stringid - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ stringurl - URL of the OCI VCN for the ODB network.
- peered_
cidrs list(string) - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent_
progress number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
access string - Configuration for Amazon S3 access from the ODB network.
- s3_
policy_ stringdocument - Endpoint policy for Amazon S3 access from the ODB network.
- status string
- Status of the Zero-ETL access.
- status_
reason string - Additional information about the current status of the ODB network.
- sts_
access string - Configuration for STS access from the ODB network.
- sts_
policy_ stringdocument - Endpoint policy for STS access from the ODB network.
- map(string)
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - map(string)
- timeouts object
- zero_
etl_ stringaccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn String
- ARN of the odb network resource.
- availability
Zone String - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - availability
Zone StringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet StringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet StringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- created
At String - Date and time when the ODB network was created.
- cross
Region List<String>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain StringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns StringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated BooleanResources - If set to true deletes associated OCI resources. Default false.
- display
Name String - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- ec2Placement
Group List<String>Ids - List of EC2 placement group IDs associated with the ODB network.
- kms
Access String - Configuration for KMS access from the ODB network.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- managed
Services List<NetworkManaged Service> - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns List<NetworkForwarding Configs Oci Dns Forwarding Config> - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network StringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress Double - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access String
- Configuration for Amazon S3 access from the ODB network.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- status String
- Status of the Zero-ETL access.
- status
Reason String - Additional information about the current status of the ODB network.
- sts
Access String - Configuration for STS access from the ODB network.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
- Map<String,String>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- timeouts
Network
Timeouts - zero
Etl StringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn string
- ARN of the odb network resource.
- availability
Zone string - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - availability
Zone stringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet stringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet stringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- created
At string - Date and time when the ODB network was created.
- cross
Region string[]S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain stringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns stringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated booleanResources - If set to true deletes associated OCI resources. Default false.
- display
Name string - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- ec2Placement
Group string[]Ids - List of EC2 placement group IDs associated with the ODB network.
- kms
Access string - Configuration for KMS access from the ODB network.
- kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- managed
Services NetworkManaged Service[] - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns NetworkForwarding Configs Oci Dns Forwarding Config[] - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network stringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network stringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource stringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn stringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn stringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs string[] - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access string
- Configuration for Amazon S3 access from the ODB network.
- s3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- status string
- Status of the Zero-ETL access.
- status
Reason string - Additional information about the current status of the ODB network.
- sts
Access string - Configuration for STS access from the ODB network.
- sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- {[key: string]: string}
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- timeouts
Network
Timeouts - zero
Etl stringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn str
- ARN of the odb network resource.
- availability_
zone str - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - availability_
zone_ strid - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup_
subnet_ strcidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client_
subnet_ strcidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- created_
at str - Date and time when the ODB network was created.
- cross_
region_ Sequence[str]s3_ restore_ sources_ accesses - List of regions enabled for cross-region restore in the ODB network.
- custom_
domain_ strname - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default_
dns_ strprefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete_
associated_ boolresources - If set to true deletes associated OCI resources. Default false.
- display_
name str - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- ec2_
placement_ Sequence[str]group_ ids - List of EC2 placement group IDs associated with the ODB network.
- kms_
access str - Configuration for KMS access from the ODB network.
- kms_
policy_ strdocument - Endpoint policy for KMS access from the ODB network.
- managed_
services Sequence[NetworkManaged Service Args] - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci_
dns_ Sequence[Networkforwarding_ configs Oci Dns Forwarding Config Args] - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci_
network_ stranchor_ id - Unique identifier of the OCI network anchor for the ODB network.
- oci_
network_ stranchor_ url - URL of the OCI network anchor for the ODB network.
- oci_
resource_ stranchor_ name - Name of the OCI resource anchor for the ODB network.
- oci_
vcn_ strid - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci_
vcn_ strurl - URL of the OCI VCN for the ODB network.
- peered_
cidrs Sequence[str] - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent_
progress float - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3_
access str - Configuration for Amazon S3 access from the ODB network.
- s3_
policy_ strdocument - Endpoint policy for Amazon S3 access from the ODB network.
- status str
- Status of the Zero-ETL access.
- status_
reason str - Additional information about the current status of the ODB network.
- sts_
access str - Configuration for STS access from the ODB network.
- sts_
policy_ strdocument - Endpoint policy for STS access from the ODB network.
- Mapping[str, str]
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- timeouts
Network
Timeouts Args - zero_
etl_ straccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- arn String
- ARN of the odb network resource.
- availability
Zone String - Name of the Availability Zone (AZ) where the odb network is located. Changing this will force terraform to create new resource. Make sure
availabilityZonemaps correctly withavailabilityZoneId. - availability
Zone StringId - AZ ID of the AZ where the ODB network is located. Changing this will force terraform to create new resource.
- backup
Subnet StringCidr - CIDR range of the backup subnet for the ODB network. Changing this will force terraform to create new resource.
- client
Subnet StringCidr - CIDR notation for the network resource. Changing this will force terraform to create new resource.
- created
At String - Date and time when the ODB network was created.
- cross
Region List<String>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- custom
Domain StringName - Name of the custom domain that the network is located.
customDomainNameanddefaultDnsPrefixboth can't be given. Changing this will force terraform to create new resource. - default
Dns StringPrefix - Default DNS prefix for the network resource. Changing this will force terraform to create new resource.
- delete
Associated BooleanResources - If set to true deletes associated OCI resources. Default false.
- display
Name String - User-friendly name for the odb network. Changing this will force terraform to create a new resource.
- ec2Placement
Group List<String>Ids - List of EC2 placement group IDs associated with the ODB network.
- kms
Access String - Configuration for KMS access from the ODB network.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- managed
Services List<Property Map> - Managed services configuration for the ODB network. See
managedServicesBlock below. - oci
Dns List<Property Map>Forwarding Configs - DNS resolver endpoints in OCI for forwarding DNS queries for the
ociPrivateZonedomain. SeeociDnsForwardingConfigsBlock below. - oci
Network StringAnchor Id - Unique identifier of the OCI network anchor for the ODB network.
- oci
Network StringAnchor Url - URL of the OCI network anchor for the ODB network.
- oci
Resource StringAnchor Name - Name of the OCI resource anchor for the ODB network.
- oci
Vcn StringId - Unique identifier Oracle Cloud ID (OCID) of the OCI VCN for the ODB network.
- oci
Vcn StringUrl - URL of the OCI VCN for the ODB network.
- peered
Cidrs List<String> - List of CIDR ranges from the peered VPC that are allowed access to the ODB network. See the ODB network peering documentation for more information.
- percent
Progress Number - Amount of progress made on the current operation on the ODB network, expressed as a percentage.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- s3Access String
- Configuration for Amazon S3 access from the ODB network.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- status String
- Status of the Zero-ETL access.
- status
Reason String - Additional information about the current status of the ODB network.
- sts
Access String - Configuration for STS access from the ODB network.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
- Map<String>
- Map of tags to assign to the exadata infrastructure. If configured with a provider
defaultTagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- timeouts Property Map
- zero
Etl StringAccess Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
Supporting Types
NetworkManagedService, NetworkManagedServiceArgs
- Cross
Region List<NetworkS3Restore Sources Accesses Managed Service Cross Region S3Restore Sources Access> - List of regions enabled for cross-region restore in the ODB network.
- Kms
Accesses List<NetworkManaged Service Kms Access> - Configuration for KMS access from the ODB network.
- Managed
S3Backup List<NetworkAccesses Managed Service Managed S3Backup Access> - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - Managed
Service List<string>Ipv4Cidrs - List of IPv4 CIDR ranges used by the managed services.
- Resource
Gateway stringArn - ARN of the resource gateway.
- S3Accesses
List<Network
Managed Service S3Access> - Configuration for Amazon S3 access from the ODB network.
- Service
Network stringArn - ARN of the service network.
- Service
Network List<NetworkEndpoints Managed Service Service Network Endpoint> - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - Sts
Accesses List<NetworkManaged Service Sts Access> - Configuration for STS access from the ODB network.
- Zero
Etl List<NetworkAccesses Managed Service Zero Etl Access> Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- Cross
Region []NetworkS3Restore Sources Accesses Managed Service Cross Region S3Restore Sources Access - List of regions enabled for cross-region restore in the ODB network.
- Kms
Accesses []NetworkManaged Service Kms Access - Configuration for KMS access from the ODB network.
- Managed
S3Backup []NetworkAccesses Managed Service Managed S3Backup Access - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - Managed
Service []stringIpv4Cidrs - List of IPv4 CIDR ranges used by the managed services.
- Resource
Gateway stringArn - ARN of the resource gateway.
- S3Accesses
[]Network
Managed Service S3Access - Configuration for Amazon S3 access from the ODB network.
- Service
Network stringArn - ARN of the service network.
- Service
Network []NetworkEndpoints Managed Service Service Network Endpoint - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - Sts
Accesses []NetworkManaged Service Sts Access - Configuration for STS access from the ODB network.
- Zero
Etl []NetworkAccesses Managed Service Zero Etl Access Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- cross_
region_ list(object)s3_ restore_ sources_ accesses - List of regions enabled for cross-region restore in the ODB network.
- kms_
accesses list(object) - Configuration for KMS access from the ODB network.
- managed_
s3_ list(object)backup_ accesses - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - managed_
service_ list(string)ipv4_ cidrs - List of IPv4 CIDR ranges used by the managed services.
- resource_
gateway_ stringarn - ARN of the resource gateway.
- s3_
accesses list(object) - Configuration for Amazon S3 access from the ODB network.
- service_
network_ stringarn - ARN of the service network.
- service_
network_ list(object)endpoints - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - sts_
accesses list(object) - Configuration for STS access from the ODB network.
- zero_
etl_ list(object)accesses Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- cross
Region List<NetworkS3Restore Sources Accesses Managed Service Cross Region S3Restore Sources Access> - List of regions enabled for cross-region restore in the ODB network.
- kms
Accesses List<NetworkManaged Service Kms Access> - Configuration for KMS access from the ODB network.
- managed
S3Backup List<NetworkAccesses Managed Service Managed S3Backup Access> - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - managed
Service List<String>Ipv4Cidrs - List of IPv4 CIDR ranges used by the managed services.
- resource
Gateway StringArn - ARN of the resource gateway.
- s3Accesses
List<Network
Managed Service S3Access> - Configuration for Amazon S3 access from the ODB network.
- service
Network StringArn - ARN of the service network.
- service
Network List<NetworkEndpoints Managed Service Service Network Endpoint> - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - sts
Accesses List<NetworkManaged Service Sts Access> - Configuration for STS access from the ODB network.
- zero
Etl List<NetworkAccesses Managed Service Zero Etl Access> Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- cross
Region NetworkS3Restore Sources Accesses Managed Service Cross Region S3Restore Sources Access[] - List of regions enabled for cross-region restore in the ODB network.
- kms
Accesses NetworkManaged Service Kms Access[] - Configuration for KMS access from the ODB network.
- managed
S3Backup NetworkAccesses Managed Service Managed S3Backup Access[] - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - managed
Service string[]Ipv4Cidrs - List of IPv4 CIDR ranges used by the managed services.
- resource
Gateway stringArn - ARN of the resource gateway.
- s3Accesses
Network
Managed Service S3Access[] - Configuration for Amazon S3 access from the ODB network.
- service
Network stringArn - ARN of the service network.
- service
Network NetworkEndpoints Managed Service Service Network Endpoint[] - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - sts
Accesses NetworkManaged Service Sts Access[] - Configuration for STS access from the ODB network.
- zero
Etl NetworkAccesses Managed Service Zero Etl Access[] Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- cross_
region_ Sequence[Networks3_ restore_ sources_ accesses Managed Service Cross Region S3Restore Sources Access] - List of regions enabled for cross-region restore in the ODB network.
- kms_
accesses Sequence[NetworkManaged Service Kms Access] - Configuration for KMS access from the ODB network.
- managed_
s3_ Sequence[Networkbackup_ accesses Managed Service Managed S3Backup Access] - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - managed_
service_ Sequence[str]ipv4_ cidrs - List of IPv4 CIDR ranges used by the managed services.
- resource_
gateway_ strarn - ARN of the resource gateway.
- s3_
accesses Sequence[NetworkManaged Service S3Access] - Configuration for Amazon S3 access from the ODB network.
- service_
network_ strarn - ARN of the service network.
- service_
network_ Sequence[Networkendpoints Managed Service Service Network Endpoint] - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - sts_
accesses Sequence[NetworkManaged Service Sts Access] - Configuration for STS access from the ODB network.
- zero_
etl_ Sequence[Networkaccesses Managed Service Zero Etl Access] Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
- cross
Region List<Property Map>S3Restore Sources Accesses - List of regions enabled for cross-region restore in the ODB network.
- kms
Accesses List<Property Map> - Configuration for KMS access from the ODB network.
- managed
S3Backup List<Property Map>Accesses - Managed S3 backup access configuration. See
managedS3BackupAccessBlock below. - managed
Service List<String>Ipv4Cidrs - List of IPv4 CIDR ranges used by the managed services.
- resource
Gateway StringArn - ARN of the resource gateway.
- s3Accesses List<Property Map>
- Configuration for Amazon S3 access from the ODB network.
- service
Network StringArn - ARN of the service network.
- service
Network List<Property Map>Endpoints - Service network endpoint configuration. See
serviceNetworkEndpointBlock below. - sts
Accesses List<Property Map> - Configuration for STS access from the ODB network.
- zero
Etl List<Property Map>Accesses Configuration for Zero-ETL access from the ODB network.
The following arguments are optional:
NetworkManagedServiceCrossRegionS3RestoreSourcesAccess, NetworkManagedServiceCrossRegionS3RestoreSourcesAccessArgs
- Ipv4Addresses List<string>
- List of IPv4 addresses for the Amazon STS access.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the Zero-ETL access.
- Ipv4Addresses []string
- List of IPv4 addresses for the Amazon STS access.
- Region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- Status string
- Status of the Zero-ETL access.
- ipv4_
addresses list(string) - List of IPv4 addresses for the Amazon STS access.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status string
- Status of the Zero-ETL access.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the Zero-ETL access.
- ipv4Addresses string[]
- List of IPv4 addresses for the Amazon STS access.
- region string
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status string
- Status of the Zero-ETL access.
- ipv4_
addresses Sequence[str] - List of IPv4 addresses for the Amazon STS access.
- region str
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status str
- Status of the Zero-ETL access.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- region String
- Region where this resource will be managed. Defaults to the Region set in the provider configuration.
- status String
- Status of the Zero-ETL access.
NetworkManagedServiceKmsAccess, NetworkManagedServiceKmsAccessArgs
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses List<string>
- List of IPv4 addresses for the Amazon STS access.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses []string
- List of IPv4 addresses for the Amazon STS access.
- Kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- domain_
name string - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses list(string) - List of IPv4 addresses for the Amazon STS access.
- kms_
policy_ stringdocument - Endpoint policy for KMS access from the ODB network.
- status string
- Status of the Zero-ETL access.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- status String
- Status of the Zero-ETL access.
- domain
Name string - Domain name for which the DNS queries are forwarded.
- ipv4Addresses string[]
- List of IPv4 addresses for the Amazon STS access.
- kms
Policy stringDocument - Endpoint policy for KMS access from the ODB network.
- status string
- Status of the Zero-ETL access.
- domain_
name str - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses Sequence[str] - List of IPv4 addresses for the Amazon STS access.
- kms_
policy_ strdocument - Endpoint policy for KMS access from the ODB network.
- status str
- Status of the Zero-ETL access.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- kms
Policy StringDocument - Endpoint policy for KMS access from the ODB network.
- status String
- Status of the Zero-ETL access.
NetworkManagedServiceManagedS3BackupAccess, NetworkManagedServiceManagedS3BackupAccessArgs
- Ipv4Addresses List<string>
- List of IPv4 addresses for the Amazon STS access.
- Status string
- Status of the Zero-ETL access.
- Ipv4Addresses []string
- List of IPv4 addresses for the Amazon STS access.
- Status string
- Status of the Zero-ETL access.
- ipv4_
addresses list(string) - List of IPv4 addresses for the Amazon STS access.
- status string
- Status of the Zero-ETL access.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- status String
- Status of the Zero-ETL access.
- ipv4Addresses string[]
- List of IPv4 addresses for the Amazon STS access.
- status string
- Status of the Zero-ETL access.
- ipv4_
addresses Sequence[str] - List of IPv4 addresses for the Amazon STS access.
- status str
- Status of the Zero-ETL access.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- status String
- Status of the Zero-ETL access.
NetworkManagedServiceS3Access, NetworkManagedServiceS3AccessArgs
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses List<string>
- List of IPv4 addresses for the Amazon STS access.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses []string
- List of IPv4 addresses for the Amazon STS access.
- S3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- Status string
- Status of the Zero-ETL access.
- domain_
name string - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses list(string) - List of IPv4 addresses for the Amazon STS access.
- s3_
policy_ stringdocument - Endpoint policy for Amazon S3 access from the ODB network.
- status string
- Status of the Zero-ETL access.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- status String
- Status of the Zero-ETL access.
- domain
Name string - Domain name for which the DNS queries are forwarded.
- ipv4Addresses string[]
- List of IPv4 addresses for the Amazon STS access.
- s3Policy
Document string - Endpoint policy for Amazon S3 access from the ODB network.
- status string
- Status of the Zero-ETL access.
- domain_
name str - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses Sequence[str] - List of IPv4 addresses for the Amazon STS access.
- s3_
policy_ strdocument - Endpoint policy for Amazon S3 access from the ODB network.
- status str
- Status of the Zero-ETL access.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- s3Policy
Document String - Endpoint policy for Amazon S3 access from the ODB network.
- status String
- Status of the Zero-ETL access.
NetworkManagedServiceServiceNetworkEndpoint, NetworkManagedServiceServiceNetworkEndpointArgs
- Vpc
Endpoint stringId - Unique identifier of the VPC endpoint.
- Vpc
Endpoint stringType - Type of the VPC endpoint.
- Vpc
Endpoint stringId - Unique identifier of the VPC endpoint.
- Vpc
Endpoint stringType - Type of the VPC endpoint.
- vpc_
endpoint_ stringid - Unique identifier of the VPC endpoint.
- vpc_
endpoint_ stringtype - Type of the VPC endpoint.
- vpc
Endpoint StringId - Unique identifier of the VPC endpoint.
- vpc
Endpoint StringType - Type of the VPC endpoint.
- vpc
Endpoint stringId - Unique identifier of the VPC endpoint.
- vpc
Endpoint stringType - Type of the VPC endpoint.
- vpc_
endpoint_ strid - Unique identifier of the VPC endpoint.
- vpc_
endpoint_ strtype - Type of the VPC endpoint.
- vpc
Endpoint StringId - Unique identifier of the VPC endpoint.
- vpc
Endpoint StringType - Type of the VPC endpoint.
NetworkManagedServiceStsAccess, NetworkManagedServiceStsAccessArgs
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses List<string>
- List of IPv4 addresses for the Amazon STS access.
- Status string
- Status of the Zero-ETL access.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Ipv4Addresses []string
- List of IPv4 addresses for the Amazon STS access.
- Status string
- Status of the Zero-ETL access.
- Sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- domain_
name string - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses list(string) - List of IPv4 addresses for the Amazon STS access.
- status string
- Status of the Zero-ETL access.
- sts_
policy_ stringdocument - Endpoint policy for STS access from the ODB network.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- status String
- Status of the Zero-ETL access.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
- domain
Name string - Domain name for which the DNS queries are forwarded.
- ipv4Addresses string[]
- List of IPv4 addresses for the Amazon STS access.
- status string
- Status of the Zero-ETL access.
- sts
Policy stringDocument - Endpoint policy for STS access from the ODB network.
- domain_
name str - Domain name for which the DNS queries are forwarded.
- ipv4_
addresses Sequence[str] - List of IPv4 addresses for the Amazon STS access.
- status str
- Status of the Zero-ETL access.
- sts_
policy_ strdocument - Endpoint policy for STS access from the ODB network.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- ipv4Addresses List<String>
- List of IPv4 addresses for the Amazon STS access.
- status String
- Status of the Zero-ETL access.
- sts
Policy StringDocument - Endpoint policy for STS access from the ODB network.
NetworkManagedServiceZeroEtlAccess, NetworkManagedServiceZeroEtlAccessArgs
NetworkOciDnsForwardingConfig, NetworkOciDnsForwardingConfigArgs
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Oci
Dns stringListener Ip - IP address of the OCI DNS listener.
- Domain
Name string - Domain name for which the DNS queries are forwarded.
- Oci
Dns stringListener Ip - IP address of the OCI DNS listener.
- domain_
name string - Domain name for which the DNS queries are forwarded.
- oci_
dns_ stringlistener_ ip - IP address of the OCI DNS listener.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- oci
Dns StringListener Ip - IP address of the OCI DNS listener.
- domain
Name string - Domain name for which the DNS queries are forwarded.
- oci
Dns stringListener Ip - IP address of the OCI DNS listener.
- domain_
name str - Domain name for which the DNS queries are forwarded.
- oci_
dns_ strlistener_ ip - IP address of the OCI DNS listener.
- domain
Name String - Domain name for which the DNS queries are forwarded.
- oci
Dns StringListener Ip - IP address of the OCI DNS listener.
NetworkTimeouts, NetworkTimeoutsArgs
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- Delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- Update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update string
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update str
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- create String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
- delete String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
- update String
- A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
Import
Using pulumi import, import Odb Network using the id. For example:
$ pulumi import aws:odb/network:Network example example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.
published on Thursday, Sep 10, 2026 by Pulumi