-
abs(float)
- Returns the absolute value of a given float. Example:abs(1)
returns1
, andabs(-1)
would also return1
, whereasabs(-3.14)
would return3.14
. See also thesignum
function. -
basename(path)
- Returns the last element of a path. -
base64decode(string)
- Given a base64-encoded string, decodes it and returns the original string. -
base64encode(string)
- Returns a base64-encoded representation of the given string. -
base64gzip(string)
- Compresses the given string with gzip and then encodes the result to base64. This can be used with certain resource arguments that allow binary data to be passed with base64 encoding, since Terraform strings are required to be valid UTF-8. -
base64sha256(string)
- Returns a base64-encoded representation of raw SHA-256 sum of the given string. This is not equivalent ofbase64encode(sha256(string))
sincesha256()
returns hexadecimal representation. -
base64sha512(string)
- Returns a base64-encoded representation of raw SHA-512 sum of the given string. This is not equivalent ofbase64encode(sha512(string))
sincesha512()
returns hexadecimal representation. -
bcrypt(password, cost)
- Returns the Blowfish encrypted hash of the string at the given cost. A defaultcost
of 10 will be used if not provided. -
ceil(float)
- Returns the least integer value greater than or equal to the argument. -
chomp(string)
- Removes trailing newlines from the given string. -
cidrhost(iprange, hostnum)
- Takes an IP address range in CIDR notation and creates an IP address with the given host number. If given host number is negative, the count starts from the end of the range. For example,cidrhost("10.0.0.0/8", 2)
returns10.0.0.2
andcidrhost("10.0.0.0/8", -2)
returns10.255.255.254
. -
cidrnetmask(iprange)
- Takes an IP address range in CIDR notation and returns the address-formatted subnet mask format that some systems expect for IPv4 interfaces. For example,cidrnetmask("10.0.0.0/8")
returns255.0.0.0
. Not applicable to IPv6 networks since CIDR notation is the only valid notation for IPv6. -
cidrsubnet(iprange, newbits, netnum)
- Takes an IP address range in CIDR notation (like10.0.0.0/8
) and extends its prefix to include an additional subnet number. For example,cidrsubnet("10.0.0.0/8", 8, 2)
returns10.2.0.0/16
;cidrsubnet("2607:f298:6051:516c::/64", 8, 2)
returns2607:f298:6051:516c:200::/72
. -
coalesce(string1, string2, ...)
- Returns the first non-empty value from the given arguments. At least two arguments must be provided. -
coalescelist(list1, list2, ...)
- Returns the first non-empty list from the given arguments. At least two arguments must be provided. -
compact(list)
- Removes empty string elements from a list. This can be useful in some cases, for example when passing joined lists as module variables or when parsing module outputs. Example:compact(module.my_asg.load_balancer_names)
-
concat(list1, list2, ...)
- Combines two or more lists into a single list. Example:concat(aws_instance.db.*.tags.Name, aws_instance.web.*.tags.Name)
-
contains(list, element)
- Returns true if a list contains the given element and returns false otherwise. Examples:contains(var.list_of_strings, "an_element")
-
dirname(path)
- Returns all but the last element of path, typically the path's directory. -
distinct(list)
- Removes duplicate items from a list. Keeps the first occurrence of each element, and removes subsequent occurrences. This function is only valid for flat lists. Example:distinct(var.usernames)
-
element(list, index)
- Returns a single element from a list at the given index. If the index is greater than the number of elements, this function will wrap using a standard mod algorithm. This function only works on flat lists. Examples:element(aws_subnet.foo.*.id, count.index)
element(var.list_of_strings, 2)
-
chunklist(list, size)
- Returns thelist
items chunked bysize
. Examples:chunklist(aws_subnet.foo.*.id, 1)
: will outputs[["id1"], ["id2"], ["id3"]]
chunklist(var.list_of_strings, 2)
: will outputs[["id1", "id2"], ["id3", "id4"], ["id5"]]
-
file(path)
- Reads the contents of a file into the string. Variables in this file are not interpolated. The contents of the file are read as-is. Thepath
is interpreted relative to the working directory. Path variables can be used to reference paths relative to other base locations. For example, when usingfile()
from inside a module, you generally want to make the path relative to the module base, like this:file("${path.module}/file")
. -
floor(float)
- Returns the greatest integer value less than or equal to the argument. -
flatten(list of lists)
- Flattens lists of lists down to a flat list of primitive values, eliminating any nested lists recursively. Examples:flatten(data.github_user.user.*.gpg_keys)
-
format(format, args, ...)
- Formats a string according to the given format. The syntax for the format is standardsprintf
syntax. Good documentation for the syntax can be found here. Example to zero-prefix a count, used commonly for naming servers:format("web-%03d", count.index + 1)
. -
formatlist(format, args, ...)
- Formats each element of a list according to the given format, similarly toformat
, and returns a list. Non-list arguments are repeated for each list element. For example, to convert a list of DNS addresses to a list of URLs, you might use:formatlist("https://%s:%s/", aws_instance.foo.*.public_dns, var.port)
. If multiple args are lists, and they have the same number of elements, then the formatting is applied to the elements of the lists in parallel. Example:formatlist("instance %v has private ip %v", aws_instance.foo.*.id, aws_instance.foo.*.private_ip)
. Passing lists with different lengths to formatlist results in an error. -
indent(numspaces, string)
- Prepends the specified number of spaces to all but the first line of the given multi-line string. May be useful when inserting a multi-line string into an already-indented context. The first line is not indented, to allow for the indented string to be placed after some sort of already-indented preamble. Example:" \"items\": ${ indent(4, "[\n \"item1\"\n]") },"
-
index(list, elem)
- Finds the index of a given element in a list. This function only works on flat lists. Example:index(aws_instance.foo.*.tags.Name, "foo-test")
-
join(delim, list)
- Joins the list with the delimiter for a resultant string. This function works only on flat lists. Examples:join(",", aws_instance.foo.*.id)
join(",", var.ami_list)
-
jsonencode(value)
- Returns a JSON-encoded representation of the given value, which can contain arbitrarily-nested lists and maps. Note that if the value is a string then its value will be placed in quotes. -
keys(map)
- Returns a lexically sorted list of the map keys. -
length(list)
- Returns the number of members in a given list or map, or the number of characters in a given string.${length(split(",", "a,b,c"))}
= 3${length("a,b,c")}
= 5${length(map("key", "val"))}
= 1
-
list(items, ...)
- Returns a list consisting of the arguments to the function. This function provides a way of representing list literals in interpolation.${list("a", "b", "c")}
returns a list of"a", "b", "c"
.${list()}
returns an empty list.
-
log(x, base)
- Returns the logarithm ofx
. -
lookup(map, key, [default])
- Performs a dynamic lookup into a map variable. Themap
parameter should be another variable, such asvar.amis
. Ifkey
does not exist inmap
, the interpolation will fail unless you specify a third argument,default
, which should be a string value to return if nokey
is found inmap
. This function only works on flat maps and will return an error for maps that include nested lists or maps. -
lower(string)
- Returns a copy of the string with all Unicode letters mapped to their lower case. -
map(key, value, ...)
- Returns a map consisting of the key/value pairs specified as arguments. Every odd argument must be a string key, and every even argument must have the same type as the other values specified. Duplicate keys are not allowed. Examples:map("hello", "world")
map("us-east", list("a", "b", "c"), "us-west", list("b", "c", "d"))
-
matchkeys(values, keys, searchset)
- For two listsvalues
andkeys
of equal length, returns all elements fromvalues
where the corresponding element fromkeys
exists in thesearchset
list. E.g.matchkeys(aws_instance.example.*.id, aws_instance.example.*.availability_zone, list("us-west-2a"))
will return a list of the instance IDs of theaws_instance.example
instances in"us-west-2a"
. No match will result in empty list. Items ofkeys
are processed sequentially, so the order of returnedvalues
is preserved. -
max(float1, float2, ...)
- Returns the largest of the floats. -
merge(map1, map2, ...)
- Returns the union of 2 or more maps. The maps are consumed in the order provided, and duplicate keys overwrite previous entries.${merge(map("a", "b"), map("c", "d"))}
returns{"a": "b", "c": "d"}
-
min(float1, float2, ...)
- Returns the smallest of the floats. -
md5(string)
- Returns a (conventional) hexadecimal representation of the MD5 hash of the given string. -
pathexpand(string)
- Returns a filepath string with~
expanded to the home directory. Note: This will create a plan diff between two different hosts, unless the filepaths are the same. -
pow(x, y)
- Returns the basex
of exponentialy
as a float.Example:
${pow(3,2)}
= 9${pow(4,0)}
= 1
-
replace(string, search, replace)
- Does a search and replace on the given string. All instances ofsearch
are replaced with the value ofreplace
. Ifsearch
is wrapped in forward slashes, it is treated as a regular expression. If using a regular expression,replace
can reference subcaptures in the regular expression by using$n
wheren
is the index or name of the subcapture. If using a regular expression, the syntax conforms to the re2 regular expression syntax. -
sha1(string)
- Returns a (conventional) hexadecimal representation of the SHA-1 hash of the given string. Example:"${sha1("${aws_vpc.default.tags.customer}-s3-bucket")}"
-
sha256(string)
- Returns a (conventional) hexadecimal representation of the SHA-256 hash of the given string. Example:"${sha256("${aws_vpc.default.tags.customer}-s3-bucket")}"
-
sha512(string)
- Returns a (conventional) hexadecimal representation of the SHA-512 hash of the given string. Example:"${sha512("${aws_vpc.default.tags.customer}-s3-bucket")}"
-
signum(integer)
- Returns-1
for negative numbers,0
for0
and1
for positive numbers. This function is useful when you need to set a value for the first resource and a different value for the rest of the resources. Example:element(split(",", var.r53_failover_policy), signum(count.index))
where the 0th index points toPRIMARY
and 1st toFAILOVER
-
slice(list, from, to)
- Returns the portion oflist
betweenfrom
(inclusive) andto
(exclusive). Example:slice(var.list_of_strings, 0, length(var.list_of_strings) - 1)
-
sort(list)
- Returns a lexographically sorted list of the strings contained in the list passed as an argument. Sort may only be used with lists which contain only strings. Examples:sort(aws_instance.foo.*.id)
,sort(var.list_of_strings)
-
split(delim, string)
- Splits the string previously created byjoin
back into a list. This is useful for pushing lists through module outputs since they currently only support string values. Depending on the use, the string this is being performed within may need to be wrapped in brackets to indicate that the output is actually a list, e.g.a_resource_param = ["${split(",", var.CSV_STRING)}"]
. Example:split(",", module.amod.server_ids)
-
substr(string, offset, length)
- Extracts a substring from the input string. A negative offset is interpreted as being equivalent to a positive offset measured backwards from the end of the string. A length of-1
is interpreted as meaning "until the end of the string". -
timestamp()
- Returns a UTC timestamp string in RFC 3339 format. This string will change with every invocation of the function, so in order to prevent diffs on every plan & apply, it must be used with theignore_changes
lifecycle attribute. -
title(string)
- Returns a copy of the string with the first characters of all the words capitalized. -
transpose(map)
- Swaps the keys and list values in a map of lists of strings. For example, transpose(map("a", list("1", "2"), "b", list("2", "3")) produces a value equivalent to map("1", list("a"), "2", list("a", "b"), "3", list("b")). -
trimspace(string)
- Returns a copy of the string with all leading and trailing white spaces removed. -
upper(string)
- Returns a copy of the string with all Unicode letters mapped to their upper case. -
urlencode(string)
- Returns an URL-safe copy of the string. -
uuid()
- Returns a UUID string in RFC 4122 v4 format. This string will change with every invocation of the function, so in order to prevent diffs on every plan & apply, it must be used with theignore_changes
lifecycle attribute. -
values(map)
- Returns a list of the map values, in the order of the keys returned by thekeys
function. This function only works on flat maps and will return an error for maps that include nested lists or maps. -
zipmap(list, list)
- Creates a map from a list of keys and a list of values. The keys must all be of type string, and the length of the lists must be the same. For example, to output a mapping of AWS IAM user names to the fingerprint of the key used to encrypt their initial password, you might use:zipmap(aws_iam_user.users.*.name, aws_iam_user_login_profile.users.*.key_fingerprint)
.
Last active
October 11, 2024 16:44
-
-
Save davewongillies/251277c068bea5466d1583aafc4096ea to your computer and use it in GitHub Desktop.
Terraform Functions
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment