You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
description = "Master password for cloudquery rds database"
value = module.rds.cluster_master_password
sensitive = true
}
# VPC
output "vpc_id" {
description = "ID of the VPC that was created or passed in"
value = local.vpc_id
}
# EKS
output "irsa_arn" {
description = "ARN of IRSA - (IAM Role for service account)"
value = module.cluster_irsa.iam_role_arn
}
output "irsa_name" {
description = "Name of IRSA - (IAM Role for service account)"
value = module.cluster_irsa.iam_role_name
}
output "helm_values" {
description = "Helm values for the cluster"
value = join("\n", local.values)
}
# CloudQuery
# output "cq_dsn" {
# description = "CQ_DSN variable for CloudQuery CLI"
# value = "postgres://${module.rds.cluster_master_username}:${module.rds.cluster_master_password}@${module.rds.cluster_endpoint}/${module.rds.cluster_database_name}"