Skip to content
Snippets Groups Projects
variables.tf 2.5 KiB
Newer Older
variable "informatica_username" {}
variable "informatica_password" {}

variable "aws_shared_cred_file" {}
variable "aws_profile" {
  default = "default"

variable "aws_account_id" {
  type = list(string)
  default = [
    "265723766240"
  ]
}

  type    = map(string)
  default = {
    Name = "test-tier"
    tier = "test"
  }
variable "private_subnets_filter" {
  type    = map(string)
  default = {
    Name = "test-private-*"
  }
  type    = map(string)
  default = {
    tier = "test"
    Name = "internal"
  }
# see git tagging in .gitlab-ci.yml for image name.
  description = "Secure Agent image name publish by .gitlab-ci.yml."
  description = "Container name for Secure Agent image."
}

# note that as per our licesning model each
# container would be an extran instance
variable "container_count" {
# see Secure Agent system requirements, before changing instance type, see the
# supported instance types for launch configuration.
variable "instance_type" {
  default = "t2.large"

variable "ecs_iam_role" {
  default = "iics-secure-agent-iam-role"
}

  type    = map(string)
  default = {
    Name = "iics-agent-cluster"
    tier = "test"
  }
variable "ecs_task_tags" {
  type    = map(string)
  default = {
    Name = "iics-secure-agent"
    tier = "test"
  }
}

variable "efs_tags" {
  type = map(string)
  default = {
    Name = "iics-secure-agent"
    tier = "test"
  }
}

variable "secure_agnet_container_volumes" {
  type = list(string)
  default = [
    # see Dockerfile for these default values.
    "/home/agent/infaagent/apps/agentcore/infaagent.log",
    "/home/agent/infaagent/apps/agentcore/agentcore.log",
    "/home/agent/infaagent/apps/agentcore/logs",
    "/home/agent/infaagent/apps/agentcore/data"
  ]
}

variable "secure_agent_efs_volume" {
  default = "agent"
}

variable "secure_agent_sg_tags" {
  default = {
    Name = "secure-agent-efs-sg"
    tier = "test"
  }
}