Difference between revisions of "Terraform types"
Jump to navigation
Jump to search
(→Types) |
|||
Line 5: | Line 5: | ||
* <code>string</code>: a sequence of Unicode characters representing some text, like "hello". | * <code>string</code>: a sequence of Unicode characters representing some text, like "hello". | ||
* <code>number</code>: a numeric value. The number type can represent both whole numbers like 15 and fractional values like 6.283185. | * <code>number</code>: a numeric value. The number type can represent both whole numbers like 15 and fractional values like 6.283185. | ||
− | * <code>bool</code>: a boolean value, either true or false. bool values can be used in conditional logic. | + | * <code>[[bool]]</code>: a boolean value, either true or false. bool values can be used in conditional logic. |
* <code>[[list]]</code> or [[tuple]]: a sequence of values, like <code>["us-west-1a", "us-west-1c"]</code>. Elements in a list or tuple are identified by consecutive whole numbers, starting with zero. | * <code>[[list]]</code> or [[tuple]]: a sequence of values, like <code>["us-west-1a", "us-west-1c"]</code>. Elements in a list or tuple are identified by consecutive whole numbers, starting with zero. | ||
* <code>[[map]]</code> or <code>object</code>: a group of values identified by named labels, like {name = "Mabel", age = 52}. | * <code>[[map]]</code> or <code>object</code>: a group of values identified by named labels, like {name = "Mabel", age = 52}. |
Revision as of 09:11, 22 October 2021
Types
string
: a sequence of Unicode characters representing some text, like "hello".number
: a numeric value. The number type can represent both whole numbers like 15 and fractional values like 6.283185.bool
: a boolean value, either true or false. bool values can be used in conditional logic.list
or tuple: a sequence of values, like["us-west-1a", "us-west-1c"]
. Elements in a list or tuple are identified by consecutive whole numbers, starting with zero.map
orobject
: a group of values identified by named labels, like {name = "Mabel", age = 52}.
Examples
type = list(string) default = []
List example: ["us-west-1a", "us-west-1c"]
type = string default = null
Map/Object example
{ name = "John" age = 52 }
variable "amis" { type = "map" default = { "us-east-1" = "ami-b374d5a5" "us-west-2" = "ami-4b32be2b" } }
Object list
variable "Your_Var_Name" { type = list default = [{ "your_var_1" = "your_value_1" "your_var_2" = "your_value_1" "your_var_3" = "your_value_1" }] }
Related terms
See also
- Terraform AWS resources: IAM, Net, EC2, ECS, ECR, S3, Route53, ACM, CloudWatch, CloudFront SES, RDS, DLM
- Terraform, OpenTofu, Terrakube.org, Installation, Terraform AWS, Terraform GCP, Terraform commands, Terraform Cloud, Terraform Enterprise (TFE), HCL, HIL, meta-arguments, providers, modules, resource, provisioners, data sources, backends: remote backends, examples, configuration files, state files, variables, types, Terraform Registry, conditionals:
depends_on
, functions, Blocks, dynamic blocks, errors, Terragrunt, Terraformer, Terratest, Terraform certifications, Terraform map type, Terraform Associate, Terraform: list type,TF_VAR_, TF_LOG
, Terraform provider versioning, Terraform Style Conventions, Required version, Terraform plugin, Terraform Named Values, tags, Changelog,tfsec, tflint
, Operators, Expressions:for, splat
, Debugging, Namespaces, Terraform Landing Zones, CDKTF, Atmos
Advertising: