mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-27 16:41:39 -03:30
* Run terraform fmt * Add terraform fmt to .terraform-validate CI step * Add tf-validate-aws CI step * Revert "Add tf-validate-aws CI step" This reverts commit e007225fac831d263613ae9ab2998d11c3e8673d.
20 lines
400 B
HCL
20 lines
400 B
HCL
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}"
|
|
}
|