Separates Into SubModules
This commit is contained in:
32
instances/config.tf
Normal file
32
instances/config.tf
Normal file
@@ -0,0 +1,32 @@
|
||||
### SET VARIABLES
|
||||
|
||||
variable "project_name" {
|
||||
type = string
|
||||
default = "hideyoshi-portifolio"
|
||||
}
|
||||
|
||||
variable "project_domain" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "k3s_token" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "number_of_workers" {
|
||||
type = number
|
||||
default = 2
|
||||
}
|
||||
|
||||
variable "aws_region" {
|
||||
type = string
|
||||
default = "sa-east-1"
|
||||
}
|
||||
|
||||
variable "ssh_public_key_main" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "ssh_public_key_ci_cd" {
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user