Files
tf_provider/TEST_STAND/S3_EVENT_FUNCTION_POC/outputs.tf
T
2026-06-30 15:46:24 +04:00

12 lines
310 B
Terraform

output "source_bucket" {
value = nubes_s3bucket.source.state_params["bucketName"]
}
output "dest_bucket" {
value = nubes_s3bucket.dest.state_params["bucketName"]
}
output "event_demo_confirmation" {
value = try(trimspace(file("${path.module}/apply_confirmation.txt")), "confirmation file not found")
}