-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
54 lines (44 loc) · 1.18 KB
/
variables.tf
File metadata and controls
54 lines (44 loc) · 1.18 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
variable "region" {
description = "AWS region"
type = string
default = "eu-west-1"
}
variable "aws_profile" {
description = "AWS CLI profile to use"
type = string
default = "apro-datalake-sandbox"
}
variable "aws_account_id" {
description = "AWS account ID — provider will refuse to operate on any other account"
type = string
default = "515966504419"
}
# --- CloudPosse label inputs ---
variable "namespace" {
description = "Namespace (e.g., organization abbreviation) for globally unique names"
type = string
}
variable "environment" {
description = "Environment (e.g., sandbox, prod)"
type = string
}
variable "name" {
description = "Application name (e.g., openclaw)"
type = string
}
# --- Module-specific inputs ---
variable "availability_zone" {
description = "Availability zone for the instance"
type = string
default = "eu-west-1a"
}
variable "bundle_id" {
description = "Lightsail bundle ID"
type = string
default = "medium_3_0"
}
variable "tailscale_auth_key" {
description = "Tailscale auth key for joining the tailnet"
type = string
sensitive = true
}