github.com/chentex/terraform@v0.11.2-0.20171208003256-252e8145842e/website/docs/configuration/interpolation.html.md (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Interpolation Syntax"
     4  sidebar_current: "docs-config-interpolation"
     5  description: |-
     6    Embedded within strings in Terraform, whether you're using the Terraform syntax or JSON syntax, you can interpolate other values into strings. These interpolations are wrapped in `${}`, such as `${var.foo}`.
     7  ---
     8  
     9  # Interpolation Syntax
    10  
    11  Embedded within strings in Terraform, whether you're using the
    12  Terraform syntax or JSON syntax, you can interpolate other values. These
    13  interpolations are wrapped in `${}`, such as `${var.foo}`.
    14  
    15  The interpolation syntax is powerful and allows you to reference
    16  variables, attributes of resources, call functions, etc.
    17  
    18  You can perform [simple math](#math) in interpolations, allowing
    19  you to write expressions such as `${count.index + 1}`. And you can
    20  also use [conditionals](#conditionals) to determine a value based
    21  on some logic.
    22  
    23  You can escape interpolation with double dollar signs: `$${foo}`
    24  will be rendered as a literal `${foo}`.
    25  
    26  ## Available Variables
    27  
    28  There are a variety of available variable references you can use.
    29  
    30  #### User string variables
    31  
    32  Use the `var.` prefix followed by the variable name. For example,
    33  `${var.foo}` will interpolate the `foo` variable value.
    34  
    35  #### User map variables
    36  
    37  The syntax is `var.MAP["KEY"]`. For example, `${var.amis["us-east-1"]}`
    38  would get the value of the `us-east-1` key within the `amis` map
    39  variable.
    40  
    41  #### User list variables
    42  
    43  The syntax is `"${var.LIST}"`. For example, `"${var.subnets}"`
    44  would get the value of the `subnets` list, as a list. You can also
    45  return list elements by index: `${var.subnets[idx]}`.
    46  
    47  #### Attributes of your own resource
    48  
    49  The syntax is `self.ATTRIBUTE`. For example `${self.private_ip}`
    50  will interpolate that resource's private IP address.
    51  
    52  -> **Note**: The `self.ATTRIBUTE` syntax is only allowed and valid within
    53  provisioners.
    54  
    55  #### Attributes of other resources
    56  
    57  The syntax is `TYPE.NAME.ATTRIBUTE`. For example,
    58  `${aws_instance.web.id}` will interpolate the ID attribute from the
    59  `aws_instance` resource named `web`. If the resource has a `count`
    60  attribute set, you can access individual attributes with a zero-based
    61  index, such as `${aws_instance.web.0.id}`. You can also use the splat
    62  syntax to get a list of all the attributes: `${aws_instance.web.*.id}`.
    63  
    64  #### Attributes of a data source
    65  
    66  The syntax is `data.TYPE.NAME.ATTRIBUTE`. For example. `${data.aws_ami.ubuntu.id}` will interpolate the `id` attribute from the `aws_ami` [data source](/docs/configuration/data-sources.html) named `ubuntu`. If the data source has a `count`
    67  attribute set, you can access individual attributes with a zero-based
    68  index, such as `${data.aws_subnet.example.0.cidr_block}`. You can also use the splat
    69  syntax to get a list of all the attributes: `${data.aws_subnet.example.*.cidr_block}`.
    70  
    71  #### Outputs from a module
    72  
    73  The syntax is `MODULE.NAME.OUTPUT`. For example `${module.foo.bar}` will
    74  interpolate the `bar` output from the `foo`
    75  [module](/docs/modules/index.html).
    76  
    77  #### Count information
    78  
    79  The syntax is `count.FIELD`. For example, `${count.index}` will
    80  interpolate the current index in a multi-count resource. For more
    81  information on `count`, see the [resource configuration
    82  page](/docs/configuration/resources.html).
    83  
    84  #### Path information
    85  
    86  The syntax is `path.TYPE`. TYPE can be `cwd`, `module`, or `root`.
    87  `cwd` will interpolate the current working directory. `module` will
    88  interpolate the path to the current module. `root` will interpolate the
    89  path of the root module.  In general, you probably want the
    90  `path.module` variable.
    91  
    92  #### Terraform meta information
    93  
    94  The syntax is `terraform.FIELD`. This variable type contains metadata about
    95  the currently executing Terraform run. FIELD can currently only be `env` to
    96  reference the currently active [state environment](/docs/state/environments.html).
    97  
    98  ## Conditionals
    99  
   100  Interpolations may contain conditionals to branch on the final value.
   101  
   102  ```hcl
   103  resource "aws_instance" "web" {
   104    subnet = "${var.env == "production" ? var.prod_subnet : var.dev_subnet}"
   105  }
   106  ```
   107  
   108  The conditional syntax is the well-known ternary operation:
   109  
   110  ```text
   111  CONDITION ? TRUEVAL : FALSEVAL
   112  ```
   113  
   114  The condition can be any valid interpolation syntax, such as variable
   115  access, a function call, or even another conditional. The true and false
   116  value can also be any valid interpolation syntax. The returned types by
   117  the true and false side must be the same.
   118  
   119  The support operators are:
   120  
   121    * Equality: `==` and `!=`
   122    * Numerical comparison: `>`, `<`, `>=`, `<=`
   123    * Boolean logic: `&&`, `||`, unary `!`
   124  
   125  A common use case for conditionals is to enable/disable a resource by
   126  conditionally setting the count:
   127  
   128  ```hcl
   129  resource "aws_instance" "vpn" {
   130    count = "${var.something ? 1 : 0}"
   131  }
   132  ```
   133  
   134  In the example above, the "vpn" resource will only be included if
   135  "var.something" evaluates to true. Otherwise, the VPN resource will
   136  not be created at all.
   137  
   138  ## Built-in Functions
   139  
   140  Terraform ships with built-in functions. Functions are called with the
   141  syntax `name(arg, arg2, ...)`. For example, to read a file:
   142  `${file("path.txt")}`.
   143  
   144  ### Supported built-in functions
   145  
   146  The supported built-in functions are:
   147  
   148    * `abs(float)` - Returns the absolute value of a given float.
   149      Example: `abs(1)` returns `1`, and `abs(-1)` would also return `1`,
   150      whereas `abs(-3.14)` would return `3.14`. See also the `signum` function.
   151  
   152    * `basename(path)` - Returns the last element of a path.
   153  
   154    * `base64decode(string)` - Given a base64-encoded string, decodes it and
   155      returns the original string.
   156  
   157    * `base64encode(string)` - Returns a base64-encoded representation of the
   158      given string.
   159  
   160    * `base64gzip(string)` - Compresses the given string with gzip and then
   161      encodes the result to base64. This can be used with certain resource
   162      arguments that allow binary data to be passed with base64 encoding, since
   163      Terraform strings are required to be valid UTF-8.
   164  
   165    * `base64sha256(string)` - Returns a base64-encoded representation of raw
   166      SHA-256 sum of the given string.
   167      **This is not equivalent** of `base64encode(sha256(string))`
   168      since `sha256()` returns hexadecimal representation.
   169  
   170    * `base64sha512(string)` - Returns a base64-encoded representation of raw
   171      SHA-512 sum of the given string.
   172      **This is not equivalent** of `base64encode(sha512(string))`
   173      since `sha512()` returns hexadecimal representation.
   174  
   175    * `bcrypt(password, cost)` - Returns the Blowfish encrypted hash of the string 
   176      at the given cost. A default `cost` of 10 will be used if not provided.
   177  
   178    * `ceil(float)` - Returns the least integer value greater than or equal
   179        to the argument.
   180  
   181    * `chomp(string)` - Removes trailing newlines from the given string.
   182  
   183    * `cidrhost(iprange, hostnum)` - Takes an IP address range in CIDR notation
   184      and creates an IP address with the given host number. If given host
   185      number is negative, the count starts from the end of the range.
   186      For example, `cidrhost("10.0.0.0/8", 2)` returns `10.0.0.2` and
   187      `cidrhost("10.0.0.0/8", -2)` returns `10.255.255.254`.
   188  
   189    * `cidrnetmask(iprange)` - Takes an IP address range in CIDR notation
   190      and returns the address-formatted subnet mask format that some
   191      systems expect for IPv4 interfaces. For example,
   192      `cidrnetmask("10.0.0.0/8")` returns `255.0.0.0`. Not applicable
   193      to IPv6 networks since CIDR notation is the only valid notation for
   194      IPv6.
   195  
   196    * `cidrsubnet(iprange, newbits, netnum)` - Takes an IP address range in
   197      CIDR notation (like `10.0.0.0/8`) and extends its prefix to include an
   198      additional subnet number. For example,
   199      `cidrsubnet("10.0.0.0/8", 8, 2)` returns `10.2.0.0/16`;
   200      `cidrsubnet("2607:f298:6051:516c::/64", 8, 2)` returns
   201      `2607:f298:6051:516c:200::/72`.
   202  
   203    * `coalesce(string1, string2, ...)` - Returns the first non-empty value from
   204      the given arguments. At least two arguments must be provided.
   205  
   206    * `coalescelist(list1, list2, ...)` - Returns the first non-empty list from
   207      the given arguments. At least two arguments must be provided.
   208  
   209    * `compact(list)` - Removes empty string elements from a list. This can be
   210       useful in some cases, for example when passing joined lists as module
   211       variables or when parsing module outputs.
   212       Example: `compact(module.my_asg.load_balancer_names)`
   213  
   214    * `concat(list1, list2, ...)` - Combines two or more lists into a single list.
   215       Example: `concat(aws_instance.db.*.tags.Name, aws_instance.web.*.tags.Name)`
   216  
   217    * `contains(list, element)` - Returns *true* if a list contains the given element
   218       and returns *false* otherwise. Examples: `contains(var.list_of_strings, "an_element")`
   219  
   220    * `dirname(path)` - Returns all but the last element of path, typically the path's directory.
   221  
   222    * `distinct(list)` - Removes duplicate items from a list. Keeps the first
   223       occurrence of each element, and removes subsequent occurrences. This
   224       function is only valid for flat lists. Example: `distinct(var.usernames)`
   225  
   226    * `element(list, index)` - Returns a single element from a list
   227        at the given index. If the index is greater than the number of
   228        elements, this function will wrap using a standard mod algorithm.
   229        This function only works on flat lists. Examples:
   230        * `element(aws_subnet.foo.*.id, count.index)`
   231        * `element(var.list_of_strings, 2)`
   232  
   233    * `chunklist(list, size)` - Returns the `list` items chunked by `size`.
   234        Examples:
   235        * `chunklist(aws_subnet.foo.*.id, 1)`: will outputs `[["id1"], ["id2"], ["id3"]]`
   236        * `chunklist(var.list_of_strings, 2)`: will outputs `[["id1", "id2"], ["id3", "id4"], ["id5"]]`
   237  
   238    * `file(path)` - Reads the contents of a file into the string. Variables
   239        in this file are _not_ interpolated. The contents of the file are
   240        read as-is. The `path` is interpreted relative to the working directory.
   241        [Path variables](#path-variables) can be used to reference paths relative
   242        to other base locations. For example, when using `file()` from inside a
   243        module, you generally want to make the path relative to the module base,
   244        like this: `file("${path.module}/file")`.
   245  
   246    * `floor(float)` - Returns the greatest integer value less than or equal to
   247        the argument.
   248  
   249    * `flatten(list of lists)` - Flattens lists of lists down to a flat list of
   250         primitive values, eliminating any nested lists recursively. Examples:
   251         * `flatten(data.github_user.user.*.gpg_keys)`
   252  
   253    * `format(format, args, ...)` - Formats a string according to the given
   254        format. The syntax for the format is standard `sprintf` syntax.
   255        Good documentation for the syntax can be [found here](https://golang.org/pkg/fmt/).
   256        Example to zero-prefix a count, used commonly for naming servers:
   257        `format("web-%03d", count.index + 1)`.
   258  
   259    * `formatlist(format, args, ...)` - Formats each element of a list
   260        according to the given format, similarly to `format`, and returns a list.
   261        Non-list arguments are repeated for each list element.
   262        For example, to convert a list of DNS addresses to a list of URLs, you might use:
   263        `formatlist("https://%s:%s/", aws_instance.foo.*.public_dns, var.port)`.
   264        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.
   265        Example:
   266        `formatlist("instance %v has private ip %v", aws_instance.foo.*.id, aws_instance.foo.*.private_ip)`.
   267        Passing lists with different lengths to formatlist results in an error.
   268  
   269    * `indent(numspaces, string)` - Prepends the specified number of spaces to all but the first
   270        line of the given multi-line string. May be useful when inserting a multi-line string
   271        into an already-indented context. The first line is not indented, to allow for the
   272        indented string to be placed after some sort of already-indented preamble.
   273        Example: `"    \"items\": ${ indent(4, "[\n    \"item1\"\n]") },"`
   274  
   275    * `index(list, elem)` - Finds the index of a given element in a list.
   276        This function only works on flat lists.
   277        Example: `index(aws_instance.foo.*.tags.Name, "foo-test")`
   278  
   279    * `join(delim, list)` - Joins the list with the delimiter for a resultant string.
   280        This function works only on flat lists.
   281        Examples:
   282        * `join(",", aws_instance.foo.*.id)`
   283        * `join(",", var.ami_list)`
   284  
   285    * `jsonencode(value)` - Returns a JSON-encoded representation of the given
   286        value, which can contain arbitrarily-nested lists and maps. Note that if
   287        the value is a string then its value will be placed in quotes.
   288  
   289    * `keys(map)` - Returns a lexically sorted list of the map keys.
   290  
   291    * `length(list)` - Returns the number of members in a given list or map, or the number of characters in a given string.
   292        * `${length(split(",", "a,b,c"))}` = 3
   293        * `${length("a,b,c")}` = 5
   294        * `${length(map("key", "val"))}` = 1
   295  
   296    * `list(items, ...)` - Returns a list consisting of the arguments to the function.
   297        This function provides a way of representing list literals in interpolation.
   298        * `${list("a", "b", "c")}` returns a list of `"a", "b", "c"`.
   299        * `${list()}` returns an empty list.
   300  
   301    * `log(x, base)` - Returns the logarithm of `x`.
   302  
   303    * `lookup(map, key, [default])` - Performs a dynamic lookup into a map
   304        variable. The `map` parameter should be another variable, such
   305        as `var.amis`. If `key` does not exist in `map`, the interpolation will
   306        fail unless you specify a third argument, `default`, which should be a
   307        string value to return if no `key` is found in `map`. This function
   308        only works on flat maps and will return an error for maps that
   309        include nested lists or maps.
   310  
   311    * `lower(string)` - Returns a copy of the string with all Unicode letters mapped to their lower case.
   312  
   313    * `map(key, value, ...)` - Returns a map consisting of the key/value pairs
   314      specified as arguments. Every odd argument must be a string key, and every
   315      even argument must have the same type as the other values specified.
   316      Duplicate keys are not allowed. Examples:
   317      * `map("hello", "world")`
   318      * `map("us-east", list("a", "b", "c"), "us-west", list("b", "c", "d"))`
   319  
   320    * `matchkeys(values, keys, searchset)` - For two lists `values` and `keys` of
   321        equal length, returns all elements from `values` where the corresponding
   322        element from `keys` exists in the `searchset` list.  E.g.
   323        `matchkeys(aws_instance.example.*.id,
   324        aws_instance.example.*.availability_zone, list("us-west-2a"))` will return a
   325        list of the instance IDs of the `aws_instance.example` instances in
   326        `"us-west-2a"`. No match will result in empty list. Items of `keys` are
   327        processed sequentially, so the order of returned `values` is preserved.
   328  
   329    * `max(float1, float2, ...)` - Returns the largest of the floats.
   330  
   331    * `merge(map1, map2, ...)` - Returns the union of 2 or more maps. The maps
   332  	are consumed in the order provided, and duplicate keys overwrite previous
   333  	entries.
   334  	* `${merge(map("a", "b"), map("c", "d"))}` returns `{"a": "b", "c": "d"}`
   335  
   336    * `min(float1, float2, ...)` - Returns the smallest of the floats.
   337  
   338    * `md5(string)` - Returns a (conventional) hexadecimal representation of the
   339      MD5 hash of the given string.
   340  
   341    * `pathexpand(string)` - Returns a filepath string with `~` expanded to the home directory. Note:
   342      This will create a plan diff between two different hosts, unless the filepaths are the same.
   343  
   344    * `pow(x, y)` - Returns the base `x` of exponential `y` as a float.
   345  
   346      Example:
   347      * `${pow(3,2)}` = 9
   348      * `${pow(4,0)}` = 1
   349  
   350    * `replace(string, search, replace)` - Does a search and replace on the
   351        given string. All instances of `search` are replaced with the value
   352        of `replace`. If `search` is wrapped in forward slashes, it is treated
   353        as a regular expression. If using a regular expression, `replace`
   354        can reference subcaptures in the regular expression by using `$n` where
   355        `n` is the index or name of the subcapture. If using a regular expression,
   356        the syntax conforms to the [re2 regular expression syntax](https://github.com/google/re2/wiki/Syntax).
   357  
   358    * `rsadecrypt(string, key)` - Decrypts `string` using RSA. The padding scheme
   359      PKCS #1 v1.5 is used. The `string` must be base64-encoded. `key` must be an
   360      RSA private key in PEM format. You may use `file()` to load it from a file.
   361  
   362    * `sha1(string)` - Returns a (conventional) hexadecimal representation of the
   363      SHA-1 hash of the given string.
   364      Example: `"${sha1("${aws_vpc.default.tags.customer}-s3-bucket")}"`
   365  
   366    * `sha256(string)` - Returns a (conventional) hexadecimal representation of the
   367      SHA-256 hash of the given string.
   368      Example: `"${sha256("${aws_vpc.default.tags.customer}-s3-bucket")}"`
   369  
   370    * `sha512(string)` - Returns a (conventional) hexadecimal representation of the
   371      SHA-512 hash of the given string.
   372      Example: `"${sha512("${aws_vpc.default.tags.customer}-s3-bucket")}"`
   373  
   374    * `signum(integer)` - Returns `-1` for negative numbers, `0` for `0` and `1` for positive numbers.
   375        This function is useful when you need to set a value for the first resource and
   376        a different value for the rest of the resources.
   377        Example: `element(split(",", var.r53_failover_policy), signum(count.index))`
   378        where the 0th index points to `PRIMARY` and 1st to `FAILOVER`
   379  
   380    * `slice(list, from, to)` - Returns the portion of `list` between `from` (inclusive) and `to` (exclusive).
   381        Example: `slice(var.list_of_strings, 0, length(var.list_of_strings) - 1)`
   382  
   383    * `sort(list)` - Returns a lexographically sorted list of the strings contained in
   384        the list passed as an argument. Sort may only be used with lists which contain only
   385        strings.
   386        Examples: `sort(aws_instance.foo.*.id)`, `sort(var.list_of_strings)`
   387  
   388    * `split(delim, string)` - Splits the string previously created by `join`
   389        back into a list. This is useful for pushing lists through module
   390        outputs since they currently only support string values. Depending on the
   391        use, the string this is being performed within may need to be wrapped
   392        in brackets to indicate that the output is actually a list, e.g.
   393        `a_resource_param = ["${split(",", var.CSV_STRING)}"]`.
   394        Example: `split(",", module.amod.server_ids)`
   395  
   396    * `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".
   397  
   398    * `timestamp()` - Returns a UTC timestamp string in RFC 3339 format. This string will change with every
   399     invocation of the function, so in order to prevent diffs on every plan & apply, it must be used with the
   400     [`ignore_changes`](/docs/configuration/resources.html#ignore-changes) lifecycle attribute.
   401  
   402    * `timeadd(time, duration)` - Returns a UTC timestamp string corresponding to adding a given `duration` to `time` in RFC 3339 format.      
   403      For example, `timeadd("2017-11-22T00:00:00Z", "10m")` produces a value `"2017-11-22T00:10:00Z"`. 
   404      
   405    * `title(string)` - Returns a copy of the string with the first characters of all the words capitalized.
   406  
   407    * `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")).
   408  
   409    * `trimspace(string)` - Returns a copy of the string with all leading and trailing white spaces removed.
   410  
   411    * `upper(string)` - Returns a copy of the string with all Unicode letters mapped to their upper case.
   412  
   413    * `urlencode(string)` - Returns an URL-safe copy of the string.
   414  
   415    * `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 the [`ignore_changes`](/docs/configuration/resources.html#ignore-changes) lifecycle attribute.
   416  
   417    * `values(map)` - Returns a list of the map values, in the order of the keys
   418      returned by the `keys` function. This function only works on flat maps and
   419      will return an error for maps that include nested lists or maps.
   420  
   421    * `zipmap(list, list)` - Creates a map from a list of keys and a list of
   422        values. The keys must all be of type string, and the length of the lists
   423        must be the same.
   424        For example, to output a mapping of AWS IAM user names to the fingerprint
   425        of the key used to encrypt their initial password, you might use:
   426        `zipmap(aws_iam_user.users.*.name, aws_iam_user_login_profile.users.*.key_fingerprint)`.
   427  
   428  ## Templates
   429  
   430  Long strings can be managed using templates.
   431  [Templates](/docs/providers/template/index.html) are
   432  [data-sources](/docs/configuration/data-sources.html) defined by a
   433  filename and some variables to use during interpolation. They have a
   434  computed `rendered` attribute containing the result.
   435  
   436  A template data source looks like:
   437  
   438  ```hcl
   439  data "template_file" "example" {
   440    template = "$${hello} $${world}!"
   441    vars {
   442      hello = "goodnight"
   443      world = "moon"
   444    }
   445  }
   446  
   447  output "rendered" {
   448    value = "${data.template_file.example.rendered}"
   449  }
   450  ```
   451  
   452  Then the rendered value would be `goodnight moon!`.
   453  
   454  You may use any of the built-in functions in your template. For more
   455  details on template usage, please see the
   456  [template_file documentation](/docs/providers/template/d/file.html).
   457  
   458  ### Using Templates with Count
   459  
   460  Here is an example that combines the capabilities of templates with the interpolation
   461  from `count` to give us a parameterized template, unique to each resource instance:
   462  
   463  ```hcl
   464  variable "count" {
   465    default = 2
   466  }
   467  
   468  variable "hostnames" {
   469    default = {
   470      "0" = "example1.org"
   471      "1" = "example2.net"
   472    }
   473  }
   474  
   475  data "template_file" "web_init" {
   476    # Render the template once for each instance
   477    count    = "${length(var.hostnames)}"
   478    template = "${file("templates/web_init.tpl")}"
   479    vars {
   480      # count.index tells us the index of the instance we are rendering
   481      hostname = "${var.hostnames[count.index]}"
   482    }
   483  }
   484  
   485  resource "aws_instance" "web" {
   486    # Create one instance for each hostname
   487    count     = "${length(var.hostnames)}"
   488  
   489    # Pass each instance its corresponding template_file
   490    user_data = "${data.template_file.web_init.*.rendered[count.index]}"
   491  }
   492  ```
   493  
   494  With this, we will build a list of `template_file.web_init` data resources
   495  which we can use in combination with our list of `aws_instance.web` resources.
   496  
   497  ## Math
   498  
   499  Simple math can be performed in interpolations:
   500  
   501  ```hcl
   502  variable "count" {
   503    default = 2
   504  }
   505  
   506  resource "aws_instance" "web" {
   507    # ...
   508  
   509    count = "${var.count}"
   510  
   511    # Tag the instance with a counter starting at 1, ie. web-001
   512    tags {
   513      Name = "${format("web-%03d", count.index + 1)}"
   514    }
   515  }
   516  ```
   517  
   518  The supported operations are:
   519  
   520  - *Add* (`+`), *Subtract* (`-`), *Multiply* (`*`), and *Divide* (`/`) for **float** types
   521  - *Add* (`+`), *Subtract* (`-`), *Multiply* (`*`), *Divide* (`/`), and *Modulo* (`%`) for **integer** types
   522  
   523  Operator precedences is the standard mathematical order of operations:
   524  *Multiply* (`*`), *Divide* (`/`), and *Modulo* (`%`) have precedence over
   525  *Add* (`+`) and *Subtract* (`-`). Parenthesis can be used to force ordering.
   526  
   527  ```text
   528  "${2 * 4 + 3 * 3}" # computes to 17
   529  "${3 * 3 + 2 * 4}" # computes to 17
   530  "${2 * (4 + 3) * 3}" # computes to 42
   531  ```
   532  
   533  You can use the [terraform console](/docs/commands/console.html) command to
   534  try the math operations.
   535  
   536  -> **Note:** Since Terraform allows hyphens in resource and variable names,
   537  it's best to use spaces between math operators to prevent confusion or unexpected
   538  behavior. For example, `${var.instance-count - 1}` will subtract **1** from the
   539  `instance-count` variable value, while `${var.instance-count-1}` will interpolate
   540  the `instance-count-1` variable value.