diff --git a/outputs.tf b/outputs.tf index 23e08b2..9336b36 100644 --- a/outputs.tf +++ b/outputs.tf @@ -2,13 +2,3 @@ output "id" { description = "ID of the created example" value = module.this.enabled ? module.this.id : null } - -output "example" { - description = "Example output" - value = module.this.enabled ? local.example : null -} - -output "random" { - description = "Stable random number for this example" - value = module.this.enabled ? join("", random_integer.example[*].result) : null -}