mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
* Adding redis as a default deployment * creating test image * renamed redis file * redis unit error fixed * redis installation files fixed * changed image in all the deployments * removing docker automation * changed the base image in try-tooljet dockerfile * stopped pack build from ce * Automation changes * Update deployment.yaml * Update deployment.yaml * Update deployment.yaml * Update deployment.yaml * Update deployment.yaml * Update deployment.yaml * Update try-tooljet.Dockerfile * Update deployment.yaml * Update deployment.yaml * Update deployment.yaml * Update variables.pkr.hcl * Update variables.pkr.hcl * Update variables.pkr.hcl * Update tooljet_ubuntu_focal.pkr.hcl * Update setup_machine.sh * Update setup_machine.sh * Delete deploy/ec2/redis-server.service * Update .env * Update docker-compose.yaml * Update docker-compose.yaml * Update docker-compose.yaml * Update docker-compose-db.yaml * Update docker-compose-db.yaml * Update .env.external.example * Update .env.internal.example * Update .env.internal.example * Update tooljet-release-docker-image-build.yml * Update tooljet-release-docker-image-build.yml
23 lines
561 B
HCL
23 lines
561 B
HCL
variable "ami_name" {
|
|
type = string
|
|
}
|
|
|
|
variable "instance_type" {
|
|
type = string
|
|
default = "t2.medium"
|
|
}
|
|
|
|
variable "ami_region" {
|
|
type = string
|
|
default = "us-west-1"
|
|
}
|
|
|
|
variable "ami_groups" {
|
|
type = list(string)
|
|
default = ["all"]
|
|
}
|
|
|
|
variable "ami_regions" {
|
|
type = list(string)
|
|
default = ["us-west-1", "us-east-1", "us-east-2", "eu-west-2", "eu-central-1", "ap-northeast-1", "ap-southeast-1","ap-northeast-3", "ap-south-1", "ap-northeast-2", "ap-southeast-2", "ca-central-1", "eu-west-1", "eu-north-1", "sa-east-1", "ap-east-1"]
|
|
}
|