mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
Signed-off-by: ollevche <ollevche@gmail.com> Signed-off-by: Oleksandr Levchenkov <ollevche@gmail.com> Co-authored-by: Janos <86970079+janosdebugs@users.noreply.github.com> Co-authored-by: Ronny Orot <ronny.orot@gmail.com>
12 lines
194 B
HCL
12 lines
194 B
HCL
data "local_file" "bucket_name" {
|
|
filename = "bucket_name.txt"
|
|
}
|
|
|
|
provider "aws" {
|
|
region = "us-east-2"
|
|
}
|
|
|
|
resource "aws_s3_bucket" "test" {
|
|
bucket = data.local_file.bucket_name.content
|
|
}
|