Skip to content

Commit

Permalink
fix: add new var (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocofaigh authored Dec 14, 2023
1 parent 90c2316 commit 76650c0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions solutions/mock-da/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,8 @@ output "fingerprint" {
description = "SSH key Fingerprint info"
value = module.mock_module.fingerprint
}

output "test" {
description = "test"
value = var.testing
}
6 changes: 6 additions & 0 deletions solutions/mock-da/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,9 @@ variable "resource_tags" {
description = "Optional list of tags to be added to created resources"
default = []
}

variable "testing" {
type = list(string)
description = "Test variable to test setting list of strings to null"
default = null
}

0 comments on commit 76650c0

Please sign in to comment.