-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
66 lines (55 loc) · 1.37 KB
/
variables.tf
File metadata and controls
66 lines (55 loc) · 1.37 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
variable "client_id" {
type = string
description = "Azure AD application client ID"
sensitive = true
}
variable "client_secret" {
type = string
description = "Azure AD application client secret"
sensitive = true
}
variable "tenant_id" {
type = string
description = "Azure Active Directory tenant ID"
sensitive = true
}
variable "subscription_id" {
type = string
description = "Azure subscription ID"
sensitive = true
}
variable "location" {
type = string
description = "Azure region for resource deployment"
default = "Central India"
}
variable "admin_username" {
type = string
description = "Administrator username for created resources"
default = "azureuser"
}
variable "r2_account_id" {
type = string
description = "R2 Account ID"
sensitive = true
}
variable "cloudflare_api_token" {
type = string
description = "Cloudflare API token with permissions to manage DNS records"
sensitive = true
}
variable "cloudflare_zone_id" {
type = string
description = "Cloudflare Zone ID for the domain where the DNS record will be created"
sensitive = true
}
variable "admin_public_key" {
type = string
description = "SSH public key for VM access"
sensitive = false
}
variable "admin_private_key" {
type = string
description = "SSH private key for VM access (use with caution)"
sensitive = true
}