terraform { required_version = ">= 1.0" required_providers { coder = { source = "coder/coder" version = ">= 0.12" } } } # Add required variables for your modules and remove any unneeded variables variable "agent_id" { type = string description = "The ID of a Coder agent." } variable "vault_addr" { type = string description = "The address of the Vault server." } variable "vault_auth_id" { type = string description = "The ID of the Vault auth method to use." default = "vault" } variable "secrets" { type = map(object({ secrets = list(string), file = string })) description = <