Skip to content

Instantly share code, notes, and snippets.

@AymenSegni
Created April 12, 2020 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AymenSegni/114d4ae0aa80f57076ee3e3505455184 to your computer and use it in GitHub Desktop.
Save AymenSegni/114d4ae0aa80f57076ee3e3505455184 to your computer and use it in GitHub Desktop.
output "region" {
value = "eu-central-1"
}
output "vpc_id" {
value = module.vpc.vpc_id
}
output "vpc_cidr_block" {
value = module.vpc.vpc_cidr_block
}
output "public_subnet_ids" {
value = module.vpc.public_subnet_ids
}
output "public_route_table_ids" {
value = module.vpc.public_route_table_ids
}
output "private_subnet_ids" {
value = module.vpc.private_subnet_ids
}
output "private_route_table_ids" {
value = module.vpc.private_route_table_ids
}
output "default_security_group_id" {
value = module.vpc.default_security_group_id
}
output "nat_gateway_ids" {
value = module.vpc.nat_gateway_ids
}
output "availability_zones" {
value = var.azs
}
output "kops_s3_bucket_name" {
value = "krypton-kops-s3"
}
output "k8s_api_http_security_group_id" {
value = module.kops.k8s_api_http_security_group_id
}
output "cluster_name" {
value = var.cluster_name
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment