mirror of
https://github.com/kelseyhightower/kubernetes-the-hard-way.git
synced 2025-12-14 16:58:58 +03:00
17 lines
338 B
HCL
17 lines
338 B
HCL
## MAIN Variables
|
|
|
|
variable "aws_access_key" {}
|
|
variable "aws_secret_key" {}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "The name that will be tagged on all the AWS resources"
|
|
default = "tfcloud"
|
|
}
|
|
|
|
variable "prefix" {
|
|
type = string
|
|
description = "The prefix to add the name"
|
|
default = "jibakurei"
|
|
}
|