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

From wikieduonline
Jump to navigation Jump to search
 
(16 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
+
TOMERGE [[Terraform variables]]
 
* https://www.terraform.io/docs/language/values/variables.html
 
* https://www.terraform.io/docs/language/values/variables.html
 
* https://learn.hashicorp.com/tutorials/terraform/aws-variables
 
* https://learn.hashicorp.com/tutorials/terraform/aws-variables
 +
https://cloud.google.com/docs/terraform/best-practices-for-terraform#variables
  
== Example variable declaration ==
+
string
 +
number
 +
bool
 +
 
 +
== Variable declaration ==
  
 
Definition in <code>[[variables.tf]]</code>
 
Definition in <code>[[variables.tf]]</code>
Line 21: Line 26:
 
  }
 
  }
  
 +
== Variable usage ==
 
Usage in any terraform file (<code>[[main.tf]]</code>), using <code>[[var.]]</code> prefix:
 
Usage in any terraform file (<code>[[main.tf]]</code>), using <code>[[var.]]</code> prefix:
  
 
  <code>AnyFieldToAssingAValue = [[var.]]YourVarName</code>
 
  <code>AnyFieldToAssingAValue = [[var.]]YourVarName</code>
 +
<code>[[AnyFieldToAssingAValue]] = "${var.YourVarName}-yourtext-here"</code>
 +
 +
yourvar = "${aws_lb.your_lb_resource_name.dns_name}"
  
 
== Errors ==
 
== Errors ==
 
* <code>[[Error: No value for required variable]]</code>
 
* <code>[[Error: No value for required variable]]</code>
 
* <code>[[Error: Reference to undeclared input variable]]</code>
 
* <code>[[Error: Reference to undeclared input variable]]</code>
 +
* <code>[[Error: Variables not allowed]]</code>
  
 
== Related term ==
 
== Related term ==
Line 34: Line 44:
 
* <code>[[terraform.tfvars]]</code>
 
* <code>[[terraform.tfvars]]</code>
 
* <code>[[terraform apply]] -var 'myvar=football'</code>
 
* <code>[[terraform apply]] -var 'myvar=football'</code>
 +
* <code>[[terraform plan]]</code>
 
* <code>[[local.]]</code>
 
* <code>[[local.]]</code>
 
* <code>[[module.]]</code>
 
* <code>[[module.]]</code>
 
* <code>[[data.]]</code>
 
* <code>[[data.]]</code>
 +
* <code>[[.name]]</code>
 +
* <code>[[.dns_name]]</code>
 +
* <code>[[.arn]]</code>
 +
* [[Terraform best practices]]
 +
* [[random_string.suffix.result]]
  
 
== See also ==
 
== See also ==

Latest revision as of 09:57, 12 February 2024

TOMERGE Terraform variables

https://cloud.google.com/docs/terraform/best-practices-for-terraform#variables

string
number
bool

Variable declaration[edit]

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"
}

Variable usage[edit]

Usage in any terraform file (main.tf), using var. prefix:

AnyFieldToAssingAValue = var.YourVarName
AnyFieldToAssingAValue = "${var.YourVarName}-yourtext-here"
yourvar = "${aws_lb.your_lb_resource_name.dns_name}"

Errors[edit]

Related term[edit]

See also[edit]

Advertising: