POC: lift the homelab-grown nextcloud-mcp-server and nextcloud-mcp-deployer-role Terraform modules into this repo so external operators can consume them via a `git::` source. Includes a top-level README documenting the two-phase deploy flow (bootstrap deployer role with a copy-pasteable IAM policy, then assume the role to deploy the MCP server) and supports both in-VPC Qdrant and external/managed Qdrant modes. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
70 lines
2.3 KiB
Terraform
70 lines
2.3 KiB
Terraform
variable "role_name" {
|
|
description = "Name of the deployer IAM role."
|
|
type = string
|
|
default = "nextcloud-mcp-deployer"
|
|
}
|
|
|
|
variable "role_path" {
|
|
description = "IAM path for the deployer role and its policy."
|
|
type = string
|
|
default = "/clients/"
|
|
}
|
|
|
|
variable "trusted_principal_arns" {
|
|
description = <<-EOT
|
|
Principal ARNs allowed to assume this role. For testing in your own
|
|
account: the user/role you want to assume from. For client deployments:
|
|
typically a single root-account ARN of the deploying party (e.g.
|
|
"arn:aws:iam::<your-account-id>:root"), with MFA or external-id
|
|
conditions added at the trust-policy level if required.
|
|
EOT
|
|
type = list(string)
|
|
validation {
|
|
condition = length(var.trusted_principal_arns) > 0
|
|
error_message = "trusted_principal_arns must contain at least one ARN."
|
|
}
|
|
}
|
|
|
|
variable "module_name_prefix" {
|
|
description = <<-EOT
|
|
The `var.name` value passed to the nextcloud-mcp-server module. Used to
|
|
scope IAM/logs/secrets ARNs. Defaults match the module default; change
|
|
only if the module is instantiated with a non-default name.
|
|
EOT
|
|
type = string
|
|
default = "nextcloud-mcp-server"
|
|
}
|
|
|
|
variable "secret_name_prefix" {
|
|
description = <<-EOT
|
|
Secrets Manager name prefix the deployer can read (and optionally
|
|
create, see `allow_secret_create`). The module accepts a secret ARN as
|
|
input; this prefix scopes the deployer's access to secrets matching
|
|
that name pattern.
|
|
EOT
|
|
type = string
|
|
default = "nextcloud-mcp"
|
|
}
|
|
|
|
variable "allow_secret_create" {
|
|
description = <<-EOT
|
|
When true, the deployer can create/update/delete Secrets Manager
|
|
secrets matching `secret_name_prefix`. Set true if the secret is
|
|
managed alongside the module in the same Terraform run; leave false if
|
|
the secret is provisioned out of band (console / separate root TF) and
|
|
only the ARN is passed in.
|
|
EOT
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "route53_zone_ids" {
|
|
description = <<-EOT
|
|
Route53 hosted zone IDs the deployer is allowed to mutate. Only needed
|
|
in the module's custom-domain mode. Leave empty (the default) for the
|
|
CloudFront-default-cert path, which requires no DNS or ACM permissions.
|
|
EOT
|
|
type = list(string)
|
|
default = []
|
|
}
|