-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
44 lines (36 loc) · 1009 Bytes
/
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
variable "aws_region" {
description = "AWS region"
type = string
}
variable "vpc_id" {
description = "VPC ID where resources will be created"
type = string
}
variable "subnet_ids" {
description = "List of subnet IDs for the ECS service and EFS mount targets"
type = list(string)
}
variable "ecs_cluster_id" {
description = "ECS Cluster ID"
type = string
}
variable "environment" {
description = "Environment in which these resources will reside"
type = string
}
variable "levitate_remote_write_url" {
description = "URL for Levitate remote write"
type = string
}
variable "levitate_remote_write_username" {
description = "Username for Levitate remote write"
type = string
}
variable "levitate_remote_write_password" {
description = "Password for Levitate remote write"
type = string
}
variable "container_mount_path" {
description = "The path where the container will mount the volume"
type = string
}