-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* terraform 1.10 usage * Version update * Usage of Terraform 1.10.1 * Version update * Updated supported versions * Markdown updated * fix: Bumping tested Terraform version to 1.10.2 * choco version update * TF version update * Readme update * Env vars printing * Add outputs cache cleanup * outputs fetching fix * simplified pinting * Added cleaning of output cache * test setting test values * env vars setting * updated tests * Destroy test update * Versions documentation update * Cleanup * Add integration test for relative path * Simplified version check * Add test for ephereal vars * Strict lint updates --------- Co-authored-by: Yousif Akbar <[email protected]>
- Loading branch information
Showing
7 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
variable "test" { | ||
type = string | ||
default = "test_value" | ||
ephemeral = true | ||
} | ||
|
||
output "output" { | ||
value = ephemeralasnull(var.test) | ||
} | ||
|
||
resource "local_file" "file" { | ||
content = "test" | ||
filename = "${path.module}/test.txt" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
inputs = { | ||
test = "test input 46521694" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters