variable "aws_region" {
  description = "Default AWS region to use"
  type        = string
  default     = "us-east-1"
}

variable "inactivate" {
  description = "Inactivate tag for IAM users"
  type        = string
  default     = "True"
}

variable "path" {
  description = "Path for IAM users"
  type        = string
  default     = "/"
}

variable "session_duration" {
  description = "Max session duration for IAM Roles"
  type        = number
  default     = 3600
}

variable "account_id" {
  description = "AWS Account Number For sme-dx3-prod"
  type        = string
  default     = "729038418454"
}

output "account" {
  value = var.account_id
}

variable "cloudops_admin_role_tag" {
  description = "Used to tag an IAM role as CloudOps-owned"
  type        = map(string)

  default = {
    CLOPS_ADM_ROLE = "YES"
  }
}

variable "environment" {
  type    = string
  default = "prod"
}


variable "application_family" {
  description = "The application family for the account"
  default     = "devops"
}

locals {
  tags = {
    environment        = var.environment
    application_family = var.application_family
    terraformed        = true
  }
}
