terraform variables: variables.tf

From wikieduonline
Revision as of 09:59, 5 September 2021 by Welcome (talk | contribs) (→‎Example)
Jump to navigation Jump to search

Example

Definition in variables.tf

variable "YourVarName" {
  default = "your_default_value"
}
variable "YourVarName" {
  type = string
  description = "Description of your variable"
  default = "your_default_value"
}

Usage in main.tf

AnyFieldToAssingAValue = var.YourVarName

Related term

See also

Advertising: