variable "account_id" {
  type        = string
  description = "AWS Account ID"
}

variable "allowed_admin_accounts" {
  type        = list(string)
  description = "List of usernames of users which are allowed to do all actions with terraform key."
}

variable "allowed_admin_roles" {
  type        = list(string)
  description = "List of IAM roles which are allowed to do all actions with terraform key."
}

variable "allowed_accounts" {
  type        = list(string)
  description = "List of usernames of users which are allowed to decrypt and encrypt objects in terraform bucket."
  default     = []
}

variable "allowed_roles" {
  type        = list(string)
  description = "List of IAM roles which are allowed to decrypt and encrypt objects in terraform bucket."
  default     = []
}
