accessKeyId

The AWS Access Key ID.

type

string

default

{
  accessKeyId = "";
}

domainName

If you're using AmazonProvidedDNS in us-east-1, specify ec2.internal. If you're using another region specify region.compute.internal (e.g ap-northeast-1.compute.internal). Otherwise specify a domain name e.g MyCompany.com. This value is used to complete unqualified DNS hostnames.

type

null or string

default

{
  domainName = null;
}

domainNameServers

The IP addresses of up to 4 domain name servers, or AmazonProvidedDNS.

type

null or list of string

default

{
  domainNameServers = null;
}

name

Name of the DHCP options set.

type

string

default

{
  name = "nixops-{uuid}-{name}";
}

netbiosNameServers

The IP addresses of up to 4 NetBIOS name servers.

type

null or list of string

default

{
  netbiosNameServers = null;
}

netbiosNodeType

The NetBIOS node type (1,2,4 or 8).

type

null or signed integer

default

{
  netbiosNodeType = null;
}

ntpServers

The IP addresses of up to 4 Network Time Protocol (NTP) servers.

type

null or list of string

default

{
  ntpServers = null;
}

region

AWS region.

type

string

tags

Tags assigned to the instance. Each tag name can be at most 128 characters, and each tag value can be at most 256 characters. There can be at most 10 tags.

type

attribute set of string

example

{
  tags = {
    foo = "bar";
    xyzzy = "bla";
  };
}

default

{
  tags = {};
}

vpcId

The ID of the VPC used to associate the DHCP options to.

type

string or resource of type ‘vpc’