-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
34 lines (28 loc) · 813 Bytes
/
variables.tf
File metadata and controls
34 lines (28 loc) · 813 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
variable "aws_ami" {
type = string
description = "The AMI ID to use for the EC2 instance"
}
variable "aws_instance_type" {
type = string
description = "The instance type to use for the EC2 instance"
}
variable "aws_instance_volume_size" {
type = number
description = "The size of the root volume in GB"
}
variable "aws_instance_volume_type" {
type = string
description = "The type of the root volume"
}
variable "aws_instance_public_key" {
type = string
description = "The public key to use for the EC2 instance"
}
variable "cloudflare_domain" {
type = string
description = "The domain to use for the Cloudflare DNS record"
}
variable "cloudflare_zone_id" {
type = string
description = "The zone ID of the domain in Cloudflare"
}