You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"oci_database_backup_destination" {
source="./modules/oci/r/oci_database_backup_destination"# compartment_id - (required) is a type of stringcompartment_id=null# connection_string - (optional) is a type of stringconnection_string=null# defined_tags - (optional) is a type of map of stringdefined_tags={}
# display_name - (required) is a type of stringdisplay_name=null# freeform_tags - (optional) is a type of map of stringfreeform_tags={}
# local_mount_point_path - (optional) is a type of stringlocal_mount_point_path=null# type - (required) is a type of stringtype=null# vpc_users - (optional) is a type of list of stringvpc_users=[]
mount_type_details=[{
local_mount_point_path =null
mount_type =null
nfs_server = []
nfs_server_export =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"oci_database_backup_destination""this" {
# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# connection_string - (optional) is a type of stringconnection_string=var.connection_string# defined_tags - (optional) is a type of map of stringdefined_tags=var.defined_tags# display_name - (required) is a type of stringdisplay_name=var.display_name# freeform_tags - (optional) is a type of map of stringfreeform_tags=var.freeform_tags# local_mount_point_path - (optional) is a type of stringlocal_mount_point_path=var.local_mount_point_path# type - (required) is a type of stringtype=var.type# vpc_users - (optional) is a type of list of stringvpc_users=var.vpc_usersdynamic"mount_type_details" {
for_each=var.mount_type_detailscontent {
# local_mount_point_path - (optional) is a type of stringlocal_mount_point_path=mount_type_details.value["local_mount_point_path"]
# mount_type - (required) is a type of stringmount_type=mount_type_details.value["mount_type"]
# nfs_server - (optional) is a type of list of stringnfs_server=mount_type_details.value["nfs_server"]
# nfs_server_export - (optional) is a type of stringnfs_server_export=mount_type_details.value["nfs_server_export"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}
output"associated_databases" {
description="returns a list of object"value=oci_database_backup_destination.this.associated_databases
}
output"defined_tags" {
description="returns a map of string"value=oci_database_backup_destination.this.defined_tags
}
output"freeform_tags" {
description="returns a map of string"value=oci_database_backup_destination.this.freeform_tags
}
output"id" {
description="returns a string"value=oci_database_backup_destination.this.id
}
output"lifecycle_details" {
description="returns a string"value=oci_database_backup_destination.this.lifecycle_details
}
output"local_mount_point_path" {
description="returns a string"value=oci_database_backup_destination.this.local_mount_point_path
}
output"nfs_mount_type" {
description="returns a string"value=oci_database_backup_destination.this.nfs_mount_type
}
output"nfs_server" {
description="returns a list of string"value=oci_database_backup_destination.this.nfs_server
}
output"nfs_server_export" {
description="returns a string"value=oci_database_backup_destination.this.nfs_server_export
}
output"state" {
description="returns a string"value=oci_database_backup_destination.this.state
}
output"time_created" {
description="returns a string"value=oci_database_backup_destination.this.time_created
}
output"this" {
value=oci_database_backup_destination.this
}