k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
412 B
21 lines
412 B
output "aws_vpc_id" {
|
|
value = "${aws_vpc.cluster-vpc.id}"
|
|
}
|
|
|
|
output "aws_subnet_ids_private" {
|
|
value = ["${aws_subnet.cluster-vpc-subnets-private.*.id}"]
|
|
}
|
|
|
|
output "aws_subnet_ids_public" {
|
|
value = ["${aws_subnet.cluster-vpc-subnets-public.*.id}"]
|
|
}
|
|
|
|
output "aws_security_group" {
|
|
value = ["${aws_security_group.kubernetes.*.id}"]
|
|
|
|
}
|
|
|
|
output "default_tags" {
|
|
value = "${var.default_tags}"
|
|
|
|
}
|