Remove unused tags var - We're not making IAMs any more.
This commit is contained in:
parent
760b2c1057
commit
1fd8e21a33
1 changed files with 1 additions and 6 deletions
|
@ -32,14 +32,9 @@ locals {
|
|||
database = lower(var.database)
|
||||
password = try(random_password.password[0].result, var.password)
|
||||
}
|
||||
variable "tags" {
|
||||
type = map(string)
|
||||
description = "Tags to apply to resources"
|
||||
default = {}
|
||||
}
|
||||
variable "engine" {
|
||||
type = string
|
||||
description = "The engine type of the RDS cluster"
|
||||
description = "The engine type of the RDS cluster or instance"
|
||||
validation {
|
||||
error_message = "Engine must be one of 'aurora-postgres' or 'aurora-mysql'"
|
||||
condition = var.engine == "aurora-postgres" || var.engine == "aurora-mysql"
|
||||
|
|
Loading…
Reference in a new issue