Exploring Terraform Variables
View some of the basic variables defined in AKS using Terraform.
We'll cover the following...
Viewing variables in Terraform
Generally speaking, entries in Terraform definitions are split into four groups. We have:
- Provider
- Resource
- Output
- Variable
That’s not to say that there aren’t other types (there are), but those four are the most important and most commonly used ones. For now, we’ll focus on variables and leave the rest for later.
Note: All the configuration files we’ll use are in the file subdirectory. ...