terraform/website/layouts
Arthur Burkart 6ed47c7241
lang/funcs: Add "alltrue" function (#25656)
This commit adds an `alltrue` function to Terraform configuration. A
reason we might want this function is because it will enable more
powerful custom variable validations. For example:

```hcl
variable "amis" {
  type = list(object({
    id = string
  }))

  validation {
    condition = (alltrue([
      for a in var.amis : length(a.id) > 4 && substr(a.id, 0, 4) == "ami-"
    ]))
    error_message = "The ID of at least one AMI was invalid."
  }
}
```
2020-09-22 09:06:42 -04:00
..
backend-types.erb Fix sidebar link for Terraform standard backends to include link to Kubernetes backend docs (#25792) 2020-08-10 20:25:14 -03:00
commands-providers.erb website: fix nav link text for 'providers mirror' 2020-08-19 12:14:24 -07:00
commands-state.erb website: Add docs for state replace-provider 2020-04-23 11:41:57 -04:00
commands-workspace.erb website: Add `workspace show` command to sidebar nav (#20800) 2019-03-22 15:06:53 -07:00
docs.erb internal/getproviders: HTTPMirrorSource implementation 2020-08-26 13:18:08 -07:00
downloads.erb website: Use a middleman partial for "other docs" list instead of hardcoding it 2019-03-14 10:38:07 +00:00
functions.erb lang/funcs: Add "alltrue" function (#25656) 2020-09-22 09:06:42 -04:00
guides.erb website: Terraform v0.13 upgrade guide 2020-06-25 09:24:41 -07:00
intro.erb website: Remove extra copy of "Getting Started", update links 2020-02-05 14:58:30 -08:00
registry.erb website: Edits to updated Registry documentation 2020-08-07 22:40:04 -07:00
terraform.erb provider/terraform: reorganize for merge into core 2017-11-02 10:46:31 -07:00