1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- variable extra_key_users {
- description = "Extra encryption key users."
- type = list
- default = [ ]
- }
- variable extra_key_attachers {
- description = "Extra encryption key attachers."
- type = list
- default = [ ]
- }
- variable identifier {
- description = "RDS Identifier"
- type = string
- default = "rhsso"
- }
- variable rds_storage {
- type = number
- default = 100
- }
- variable "rhsso_instance_count" {
- description = "how many instances"
- type = number
- }
- variable "azs" {
- type = list(string)
- }
- variable "private_subnets" {
- type = list(string)
- }
- variable "public_subnets" {
- type = list(string)
- }
- variable "vpc_id" {
- type = string
- }
- variable "tags" {
- description = "Tags to add to the resource (in addition to global standard tags)"
- type = map
- default = { }
- }
- variable "instance_type" {
- type = string
- default = "t3a.micro"
- }
- variable "db_instance_type" {
- type = string
- default = "db.t3.micro"
- }
- variable "reverse_enabled" {
- description = "Whether to create the reverse DNS entry."
- type = bool
- default = true
- }
- variable "trusted_ips" { type = list(string) }
- variable "proxy" { type = string }
- variable "salt_master" { type = string }
- variable "cidr_map" { type = map }
- variable "dns_info" { type = map }
- variable "standard_tags" { type = map }
- variable "environment" { type = string }
- variable "aws_region" { type = string }
- variable "aws_partition" { type = string }
- variable "aws_partition_alias" { type = string }
- variable "aws_account_id" { type = string }
- variable "common_services_account" { type = string }
- variable "instance_termination_protection" { type = bool }
|