1
0
forked from pierront/but3-iac

debut compute

This commit is contained in:
2025-12-04 09:02:57 +01:00
parent 6dbffb5a10
commit 7d80805e60
3 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
variable "project_name" {
type = string
}
variable "instance_type" {
type = string
}
variable "zone" {
type = string
}
variable "frontend_subnet_id" {
type = string
}
variable "backend_subnet_id" {
type = string
}
variable "database_subnet_id" {
type = string
}
variable "startup_script" {
type = string
}