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

From wikieduonline
Jump to navigation Jump to search
Line 48: Line 48:
 
* <code>[[data.]]</code>
 
* <code>[[data.]]</code>
 
* <code>[[.name]]</code>
 
* <code>[[.name]]</code>
 +
* <code>[[.dns_name]]</code>
 
* [[Terraform best practices]]
 
* [[Terraform best practices]]
  

Revision as of 14:44, 2 March 2023

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

string
number
bool

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

Variable usage

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

Related term

See also

Advertising: