Skip to content

Commit d9985ba

Browse files
authored
Fix environment variable input names (#12)
1 parent 146a041 commit d9985ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ module "shell_resource_hello" {
7070
}
7171
7272
// Environment variables (will be hidden in the Terraform plan output)
73-
sensitive_environment = {
73+
environment_sensitive = {
7474
MORETEXT = "World"
7575
}
7676
7777
// Environment variables that, when changed, will not trigger a re-create
78-
triggerless_environment = {
78+
environment_triggerless = {
7979
ORIGINAL_CREATED_TIME = timestamp()
8080
}
8181
}

0 commit comments

Comments
 (0)