24 lines
639 B
HCL
24 lines
639 B
HCL
# Copy this file to terraform.tfvars and customize as needed
|
|
|
|
# Resource Group Configuration
|
|
resource_group_name = "rg-trusted-ai-demo"
|
|
location = "austriaeast"
|
|
|
|
# Network Configuration
|
|
vnet_address_space = "10.0.0.0/16"
|
|
subnet_address_prefix = "10.0.1.0/24"
|
|
allowed_ssh_source = "*" # Change to your public IP for better security, e.g., "1.2.3.4/32"
|
|
|
|
# Virtual Machine Configuration
|
|
vm_name = "vm-trusted-ai"
|
|
vm_size = "Standard_B2ats_v2"
|
|
admin_username = "azureadmin"
|
|
admin_password = "Hab2009Keins!"
|
|
|
|
# Tags
|
|
tags = {
|
|
Environment = "dev"
|
|
Project = "trusted-ai-demo"
|
|
ManagedBy = "OpenTofu"
|
|
}
|