Initial commit

This commit is contained in:
Yaser
2026-08-13 19:42:08 +03:30
commit d59bf30ef0
173 changed files with 11702 additions and 0 deletions

44
terraform/variables.tf Normal file
View File

@@ -0,0 +1,44 @@
variable "credentials" {
type = string
}
variable "ssh_user" {
type = string
description = "Name of the SSH user to use"
default = "app"
}
variable "ssh_public_key" {
type = string
description = "Location of the public RSA key used for SSH-ing onto the main VM"
}
variable "ssh_private_key" {
type = string
description = "Location of the private RSA key used for SSH-ing onto the main VM"
}
variable "project" {
type = string
}
variable "region" {
type = string
}
variable "zone" {
type = string
}
variable "machine_type" {
type = string
}
variable "instance_name" {
type = string
}
variable "image" {
type = string
}