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

  1. output "aws_vpc_id" {
  2. value = "${aws_vpc.cluster-vpc.id}"
  3. }
  4. output "aws_subnet_ids_private" {
  5. value = ["${aws_subnet.cluster-vpc-subnets-private.*.id}"]
  6. }
  7. output "aws_subnet_ids_public" {
  8. value = ["${aws_subnet.cluster-vpc-subnets-public.*.id}"]
  9. }
  10. output "aws_security_group" {
  11. value = ["${aws_security_group.kubernetes.*.id}"]
  12. }
  13. output "default_tags" {
  14. value = "${var.default_tags}"
  15. }