test/terraform: add cluster outputs

This commit is contained in:
Mitchell Hashimoto 2018-08-20 15:54:04 -07:00
parent c7fa40d247
commit 90ce7e614c
No known key found for this signature in database
GPG key ID: 744E147AA52F5B0A

View file

@ -0,0 +1,7 @@
output "cluster_id" {
value = "${google_container_cluster.cluster.id}"
}
output "cluster_name" {
value = "${google_container_cluster.cluster.name}"
}