Difference between revisions of "Terraform variables: variables.tf"

From wikieduonline
Jump to navigation Jump to search
Line 33: Line 33:
 
* <code>[[variable.tfvars]]</code>
 
* <code>[[variable.tfvars]]</code>
 
* <code>[[terraform.tfvars]]</code>
 
* <code>[[terraform.tfvars]]</code>
* [[Variables]]
+
* <code>[[terraform apply]] -var 'myvar=football'</code>
* <code>[[terraform apply]] -var ‘myvar=football’</code>
 
 
* <code>[[local.]]</code>
 
* <code>[[local.]]</code>
 
* <code>[[module.]]</code>
 
* <code>[[module.]]</code>

Revision as of 19:48, 12 September 2022

Example variable declaration

Definition in variables.tf

variable "YourVarName" {}
variable "YourVarName" { default = "your_default_value" }
variable "your_subnets" { default = ["subnet-0d68d399b6cf9c2b3", "subnet-055f2f0b4de211111"] }
variable "YourVarName" {
  default = "your_default_value"
}
variable "YourVarName" {
  type = string
  description = "Description of your variable"
  default = "your_default_value"
}

Usage in any terraform file, main.tf:

AnyFieldToAssingAValue = var.YourVarName

Errors

Related term

See also

Advertising: