-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
37 lines (37 loc) · 908 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
variable "aws_account_id" {
description = "AWS account ID"
type = string
}
variable "aws_region" {
description = "Name of region for deployment"
type = string
}
variable "rds_instance_id"{
description = "Identifier of RDS instance"
type = string
}
variable "vpc_id"{
description = "Identifier of VPC"
type=string
}
variable "vpc_subnet_filter_tag"{
description = "Subnet tag used to select specific subnets in a VPC"
type=map
}
variable "rds_proxy_role"{
description = "Role name used by RDS Proxy to access database credentials"
type = string
}
variable "rds_security_group_name"{
description = "Security group name for use with RDS Proxy"
type = string
}
variable "rds_secret_name"{
description = "Name of the secret in Secrets Manager"
type=string
}
variable "rds_proxy_tags"{
description = "Tags that need applied on RDS Proxy resource"
type=map
default={}
}