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

From wikieduonline
Jump to navigation Jump to search
(Created page with "{{Draft}} * {{Terraform}}")
Tags: Mobile web edit, Mobile edit
 
 
(65 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Draft}}
+
TOMERGE [[Terraform variables]]
 +
* https://www.terraform.io/docs/language/values/variables.html
 +
* https://learn.hashicorp.com/tutorials/terraform/aws-variables
 +
https://cloud.google.com/docs/terraform/best-practices-for-terraform#variables
  
 +
string
 +
number
 +
bool
  
* {{Terraform}}
+
== Variable declaration ==
 +
 
 +
Definition in <code>[[variables.tf]]</code>
 +
 
 +
[[variable]] "YourVarName" {}
 +
variable "YourVarName" { default = "your_default_value" }
 +
variable "your_subnets" { default = ["subnet-0d68d399b6cf9c2b3", "subnet-055f2f0b4de211111"] }
 +
 
 +
[[variable]] "YourVarName" {
 +
  default = "your_default_value"
 +
}
 +
 
 +
variable "YourVarName" {
 +
  [[Terraform variable types|type]] = [[string]]
 +
  description = "Description of your variable"
 +
  default = "your_default_value"
 +
}
 +
 
 +
== Variable usage ==
 +
Usage in any terraform file (<code>[[main.tf]]</code>), using <code>[[var.]]</code> prefix:
 +
 
 +
<code>AnyFieldToAssingAValue = [[var.]]YourVarName</code>
 +
<code>[[AnyFieldToAssingAValue]] = "${var.YourVarName}-yourtext-here"</code>
 +
 
 +
yourvar = "${aws_lb.your_lb_resource_name.dns_name}"
 +
 
 +
== Errors ==
 +
* <code>[[Error: No value for required variable]]</code>
 +
* <code>[[Error: Reference to undeclared input variable]]</code>
 +
* <code>[[Error: Variables not allowed]]</code>
 +
 
 +
== Related term ==
 +
* <code>[[main.tf]]</code>
 +
* <code>[[variable.tfvars]]</code>
 +
* <code>[[terraform.tfvars]]</code>
 +
* <code>[[terraform apply]] -var 'myvar=football'</code>
 +
* <code>[[terraform plan]]</code>
 +
* <code>[[local.]]</code>
 +
* <code>[[module.]]</code>
 +
* <code>[[data.]]</code>
 +
* <code>[[.name]]</code>
 +
* <code>[[.dns_name]]</code>
 +
* <code>[[.arn]]</code>
 +
* [[Terraform best practices]]
 +
* [[random_string.suffix.result]]
 +
 
 +
== See also ==
 +
* {{tf files}}
 +
* {{Terraform variables}}
 +
 
 +
[[Category:Terraform]]

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: