Files
hncb-fusion-deid-demo/terraform/variables.tf

26 lines
822 B
HCL

variable "region" {
description = "AWS region. Bedrock + AgentCore have the widest quotas in us-east-1 / us-west-2."
type = string
default = "us-east-1"
}
variable "project" {
description = "Name prefix for all resources."
type = string
default = "hncb-deid-demo"
}
variable "bedrock_model_id" {
description = "Bedrock model the agent reasons with."
type = string
default = "anthropic.claude-3-5-sonnet-20241022-v2:0"
}
# Fusion is a shared SaaS instance (NOT deployed here). Only the Presidio detector
# is self-hosted. TODO: set after scripts/deploy.sh builds + pushes the image.
variable "presidio_image_uri" {
description = "ECR URI for the Presidio detector image built from ./presidio."
type = string
default = "REPLACE_ME_PRESIDIO_IMAGE_URI"
}