Skip to content

Commit

Permalink
Merge pull request #140 from feend78/current-config-output
Browse files Browse the repository at this point in the history
Add current_config output to all providers
  • Loading branch information
pst authored Oct 22, 2020
2 parents 149f575 + e40797c commit 37b31e7
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions aws/cluster/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
output "current_config" {
value = module.configuration.merged[terraform.workspace]
}
4 changes: 4 additions & 0 deletions azurerm/cluster/output.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
output "aks_vnet" {
value = module.cluster.aks_vnet
}

output "current_config" {
value = module.configuration.merged[terraform.workspace]
}
3 changes: 3 additions & 0 deletions google/cluster/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
output "current_config" {
value = module.configuration.merged[terraform.workspace]
}
3 changes: 3 additions & 0 deletions kind/cluster/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
output "current_config" {
value = module.configuration.merged[terraform.workspace]
}

0 comments on commit 37b31e7

Please sign in to comment.