-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
59 lines (50 loc) · 1.37 KB
/
variables.tf
File metadata and controls
59 lines (50 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
variable "aws_region" {
description = "AWS region to deploy resources"
type = string
default = "eu-central-1"
}
variable "environment" {
description = "Environment name"
type = string
default = "demo"
}
variable "project_name" {
description = "Project name used for resource naming and tagging"
type = string
default = "aws-demo"
}
variable "vpc_cidr" {
description = "CIDR block for the VPC"
type = string
default = "10.0.0.0/16"
}
variable "create_nat_gateway" {
description = "Whether to create NAT Gateway for private subnet internet access (increases cost by ~$1/day)"
type = bool
default = false
}
variable "domain_name" {
description = "The domain name for the ACM certificate"
type = string
default = "turbobasic.dev"
}
variable "cloudflare_api_token" {
description = "Cloudflare API token"
type = string
sensitive = true
}
variable "cloudflare_zone_id" {
description = "The Cloudflare zone ID"
type = string
sensitive = true
}
variable "obsidian_bucket_name" {
description = "The name of the S3 bucket for Obsidian vaults"
type = string
default = "obsidian-sync"
}
variable "obsidian_iam_user_name" {
description = "The name of the IAM user for Obsidian vault access"
type = string
default = "obsidian-sync-user"
}