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"digitalocean_database_replica" {
source="./modules/digitalocean/r/digitalocean_database_replica"# cluster_id - (required) is a type of stringcluster_id=null# name - (required) is a type of stringname=null# private_network_uuid - (optional) is a type of stringprivate_network_uuid=null# region - (optional) is a type of stringregion=null# size - (optional) is a type of stringsize=null# tags - (optional) is a type of set of stringtags=[]
}
resource"digitalocean_database_replica""this" {
# cluster_id - (required) is a type of stringcluster_id=var.cluster_id# name - (required) is a type of stringname=var.name# private_network_uuid - (optional) is a type of stringprivate_network_uuid=var.private_network_uuid# region - (optional) is a type of stringregion=var.region# size - (optional) is a type of stringsize=var.size# tags - (optional) is a type of set of stringtags=var.tags
}