| page_title | solidserver_ip_alias Resource - SOLIDserver |
|---|---|
| subcategory | |
| description | IP aliases resource allows to create and manage multiple names for a single IP address. They are pretty useful to keep IPAM in sync with the DNS handling CNAME(s) from a single repository. |
IP aliases resource allows to create and manage multiple names for a single IP address. They are pretty useful to keep IPAM in sync with the DNS handling CNAME(s) from a single repository.
resource "solidserver_ip_alias" "myFirstIPAlias" {
space = "${solidserver_ip_space.myFirstSpace.name}"
address = "${solidserver_ip_address.myFirstIPAddress.address}"
name = "myfirstipcnamealias.mycompany.priv"
}address(String) The IP address for which the alias will be associated to.name(String) The FQDN of the IP address alias to create.space(String) The name of the space to which the address belong to.
type(String) The type of the Alias to create (Supported: A, CNAME; Default: CNAME).
id(String) The ID of this resource.