-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
14 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
output "id" { | ||
description = "ID to pass other modules in order to refer to this module as a dependency. It takes the ID that comes from the main module and passes it along to the code that called this variant in the first place." | ||
description = "ID to pass other modules in order to refer to this module as a dependency." | ||
value = module.loki-stack.id | ||
} | ||
|
||
output "loki_credentials" { | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
description = "Credentials to access the Loki ingress, if activated." | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
} |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
output "id" { | ||
description = "ID to pass other modules in order to refer to this module as a dependency. It takes the ID that comes from the main module and passes it along to the code that called this variant in the first place." | ||
description = "ID to pass other modules in order to refer to this module as a dependency." | ||
value = module.loki-stack.id | ||
} | ||
|
||
output "loki_credentials" { | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
description = "Credentials to access the Loki ingress, if activated." | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
} |
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
output "id" { | ||
value = module.loki-stack.id | ||
description = "ID to pass other modules in order to refer to this module as a dependency." | ||
value = module.loki-stack.id | ||
} | ||
|
||
output "loki_credentials" { | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
description = "Credentials to access the Loki ingress, if activated." | ||
value = module.loki-stack.loki_credentials | ||
sensitive = true | ||
} |
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