From 447da5a45a3eb6ca7d43e42ed7a9d047b8620eea Mon Sep 17 00:00:00 2001 From: James Woolfenden Date: Sun, 24 Nov 2019 15:51:44 +0000 Subject: [PATCH] multiple providers --- example/exampleA/outputs.tf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 example/exampleA/outputs.tf diff --git a/example/exampleA/outputs.tf b/example/exampleA/outputs.tf new file mode 100644 index 0000000..a1b6118 --- /dev/null +++ b/example/exampleA/outputs.tf @@ -0,0 +1,8 @@ + +output "local_nodes" { + value = module.cassandra.local_nodes +} + +output "security_group" { + value = module.cassandra.security_group +}