accessKeyId

The AWS Access Key ID.

type

string

default

{
  accessKeyId = "";
}

fileSystem

The Elastic File System to which this mount target refers.

type

string or resource of type ‘elastic-file-system’

ipAddress

The IP address of the mount target in the subnet. If unspecified, EC2 will automatically assign an address.

type

null or string

default

{
  ipAddress = null;
}

region

AWS region.

type

string

securityGroups

The EC2 security groups associated with the mount target's network interface.

type

list of string

default

{
  securityGroups = [];
}

subnet

The EC2 subnet in which to create this mount target.

type

string or resource of type ‘vpc-subnet’

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 = {};
}