mirror of
https://github.com/ghndrx/GSP662.git
synced 2026-02-10 06:54:58 +00:00
24 lines
427 B
HCL
24 lines
427 B
HCL
# modules/backend/main.tf
|
|
|
|
module "network" {
|
|
source = "../network"
|
|
}
|
|
|
|
resource "google_compute_instance" "backend" {
|
|
name = "backend"
|
|
machine_type = "f1-micro"
|
|
zone = "${var.region}-b"
|
|
|
|
boot_disk {
|
|
initialize_params {
|
|
image = "debian-cloud/debian-9"
|
|
}
|
|
}
|
|
|
|
network_interface {
|
|
network = module.network.network_name
|
|
}
|
|
|
|
metadata_startup_script = module.network.startup_script
|
|
}
|