-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathvariables.tf
More file actions
31 lines (31 loc) · 863 Bytes
/
variables.tf
File metadata and controls
31 lines (31 loc) · 863 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
variable "vpc_id" {
description = "The ID of your provisioned VPC."
type = string
}
variable "vpc_cidr_block" {
description = "CIDR block of your VPC."
type = string
}
variable "private_subnet_ids" {
description = "Private VPC subnet IDs to associate with vpc endpoints."
type = list(any)
}
variable "tags" {
description = "Tags to associate with created resources."
type = map(string)
}
variable "create_prometheus_vpc_endpoint" {
description = "Create Prometheus VPC endpoint and security group?"
type = bool
default = true
}
variable "create_grafana_vpc_endpoint" {
description = "Create Grafana VPC endpoint and security group?"
type = bool
default = true
}
variable "resource_prefix" {
type = string
description = "Prefix for resource names"
default = "cdc-nbs"
}