This commit is contained in:
Sam
2025-09-26 11:19:35 +00:00
parent 0049839d98
commit 49c0913f2b
4 changed files with 19 additions and 3 deletions
+11 -2
View File
@@ -23,5 +23,14 @@ module "network" {
project = "TerraformBootcamp"
}
/*
module "compute" {
source = "../../modules/compute"
resource_group_name = "terraform"
location = "UK South"
subnet_id = module.network.subnet_ids["public"]
vm_size = "Standard_B1s"
admin_username = "azureuser"
ssh_public_key = "<your-ssh-public-key>"
}
*/