kubernetes-the-hard-way/terraform/aws/variables.tf

17 lines
338 B
Terraform
Raw Normal View History

2019-11-18 09:49:51 +03:00
## MAIN Variables
2019-11-18 09:21:02 +03:00
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"
}