Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.19 KB

File metadata and controls

39 lines (28 loc) · 1.19 KB
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.

solidserver_ip_alias (Resource)

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.

Example Usage

resource "solidserver_ip_alias" "myFirstIPAlias" {
  space  = "${solidserver_ip_space.myFirstSpace.name}"
  address = "${solidserver_ip_address.myFirstIPAddress.address}"
  name   = "myfirstipcnamealias.mycompany.priv"
}

Schema

Required

  • 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.

Optional

  • type (String) The type of the Alias to create (Supported: A, CNAME; Default: CNAME).

Read-Only

  • id (String) The ID of this resource.