mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 15:04:57 +00:00
commit new all
This commit is contained in:
33
modules/frontend/variables.tf
Normal file
33
modules/frontend/variables.tf
Normal file
@@ -0,0 +1,33 @@
|
||||
variable "project_id" {
|
||||
description = "The ID of the Google Cloud project where resources will be created"
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
description = "The region in which to create the resources"
|
||||
}
|
||||
|
||||
variable "zone" {
|
||||
description = "The zone in which to create the resources"
|
||||
}
|
||||
|
||||
variable "instance_name" {
|
||||
description = "The name to assign to the Compute Engine instance"
|
||||
}
|
||||
|
||||
variable "machine_type" {
|
||||
description = "The machine type of the Compute Engine instance"
|
||||
default = "f1-micro"
|
||||
}
|
||||
|
||||
variable "image_name" {
|
||||
description = "The name of the image to use for the Compute Engine instance boot disk"
|
||||
default = "ubuntu-os-cloud/ubuntu-2004-lts"
|
||||
}
|
||||
|
||||
variable "network_name" {
|
||||
description = "The name of the network to which the Compute Engine instance will be attached"
|
||||
}
|
||||
|
||||
variable "startup_script_path" {
|
||||
description = "The local path to the startup script to be run on the Compute Engine instance"
|
||||
}
|
||||
Reference in New Issue
Block a user