variable "profile" {
  type = string
}

variable "aws_username" {
  type = string
}

variable "region" {
  type    = string
  default = "us-east-1"
}

variable "update_delay" {
  type        = string
  description = "Delay between key creation and update action in Octopus (to fix the API error)"
  default     = "10s"
}

variable "rotation_days" {
  type    = number
  default = 60
}

variable "policy_arn" {
  type    = string
  default = "arn:aws:iam::aws:policy/AmazonEC2ContainerRegistryFullAccess"
}

variable "tags" {
  type = map(string)
  default = {
    "watchdog_enabled" = "always"
  }
}
