-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
44 lines (36 loc) · 915 Bytes
/
variables.tf
File metadata and controls
44 lines (36 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# AWS Variables
variable "aws_region" {
description = "AWS region for the EC2 instance"
default = "us-east-2"
}
variable "aws_instance_type" {
description = "EC2 instance type"
default = "t2.micro"
}
# Azure Variables
variable "azure_location" {
description = "Azure region for the VM"
default = "East US"
}
variable "azure_admin_username" {
description = "Azure VM admin username"
default = "azureuser"
}
variable "azure_ssh_public_key" {
description = "Path to your SSH public key for Azure"
}
# GCP Variables
variable "gcp_project_id" {
description = "Google Cloud project ID"
}
variable "gcp_region" {
description = "GCP region for the VM"
default = "us-central1"
}
variable "gcp_credentials_file" {
description = "Path to the GCP service account JSON file"
}
variable "gcp_machine_type" {
description = "GCP VM machine type"
default = "e2-micro"
}