Manages a Private Network on 1&1
resource "oneandone_private_network" "pn" {
name = "pn_test",
description = "new stuff001"
datacenter = "GB"
network_address = "192.168.7.0"
subnet_mask = "255.255.255.0"
server_ids = [
"${oneandone_server.server.id}",
"${oneandone_server.server02.id}",
]
}
The following arguments are supported:
datacenter - (Optional) Location of desired 1and1 datacenter. Can be DE, GB, US or ES. description - (Optional) Description for the shared storage name - (Required) The name of the private network network_address - (Optional) Network address for the private network subnet_mask - (Optional) Subnet mask for the private network server_ids (Optional) List of servers that are to be associated with the private network
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/oneandone/r/private_network.html