12 lines
310 B
Terraform
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")
|
|
}
|