Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion examples/mpc-party/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ module "mpc_party" {

kms_image_attestation_sha = var.kms_image_attestation_sha
kms_deletion_window_in_days = var.kms_deletion_window_in_days
nodegroup_source_security_group_ids = var.nodegroup_source_security_group_ids
nodegroup_additional_security_group_ids = var.nodegroup_additional_security_group_ids
nodegroup_enable_ssm_managed_instance = var.nodegroup_enable_ssm_managed_instance
nodegroup_use_latest_ami_release_version = var.nodegroup_use_latest_ami_release_version
Expand All @@ -79,6 +80,7 @@ module "mpc_party" {
# RDS Configuration
enable_rds = var.enable_rds
rds_db_name = var.rds_db_name
rds_prefix = var.rds_prefix
rds_create_monitoring_role = var.rds_create_monitoring_role
rds_manage_master_user_password = var.rds_manage_master_user_password
rds_username = var.rds_username
Expand All @@ -103,7 +105,6 @@ module "mpc_party" {
rds_k8s_secret_namespace = var.rds_k8s_secret_namespace
rds_allowed_cidr_blocks = var.rds_allowed_cidr_blocks
rds_vpc_id = var.rds_vpc_id
rds_subnet_ids = var.rds_subnet_ids
rds_deletion_protection = var.rds_deletion_protection

# Tagging
Expand Down
1 change: 1 addition & 0 deletions examples/mpc-party/terraform.tfvars.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ aws_region = "eu-west-1"
enable_region_validation = false

# MPC Party Configuration
party_id = 1
party_name = "mpc-party-2"
environment = "dev"

Expand Down
12 changes: 0 additions & 12 deletions examples/mpc-party/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,6 @@ variable "kubeconfig_context" {
default = null
}

variable "eks_cluster_name" {
description = "EKS cluster name for automatic token authentication (optional, used for exec auth)"
type = string
default = null
}

# Tagging
variable "additional_tags" {
description = "Additional tags to apply to all resources"
Expand Down Expand Up @@ -446,12 +440,6 @@ variable "rds_vpc_id" {
default = null
}

variable "rds_subnet_ids" {
description = "Subnet IDs for the RDS database"
type = list(string)
default = []
}

variable "rds_create_monitoring_role" {
description = "Whether to create the RDS monitoring role"
type = bool
Expand Down