-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
71 lines (59 loc) · 1.68 KB
/
variables.tf
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
67
68
69
70
71
variable "aws_access_key" {
type = string
description = "Access key to AWS console"
sensitive = true
}
variable "aws_secret_key" {
type = string
description = "Secret key to AWS console"
sensitive = true
}
variable "aws_region" {
type = string
description = "AWS region"
default = "eu-central-1"
}
variable "nixos_config" {
type = string
description = "Path to configuration.nix that gets base64 enccoded and passed through user-data to the instance"
default = "./configuration.nix"
}
variable "instance_name" {
type = string
description = "Name of the instance to be created"
default = "satisfactory"
}
variable "instance_type" {
type = string
default = "m5a.xlarge"
}
variable "ami_id" {
type = string
description = "The NIXOS AMI"
default = "ami-05df1b211df600977" #22.11
# pick the AMI from https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/virtualisation/amazon-ec2-amis.nix
}
variable "ami_key_pair_name" {
type = string
default = "satisfactory"
sensitive = true
}
variable "domain" {
type = string
description = "FQDN of your Cloudflare domain"
}
variable "discord_webhook_url" {
type = string
description = "webhook URL in the form of https://discord.com/api/webhooks/..."
sensitive = true
}
variable "cloudflare_api_token" {
type = string
description = "api token with permissions"
sensitive = true
}
variable "cloudflare_account_id" {
type = string
description = "Account ID for this zone"
sensitive = true
}