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>
13 lines
202 B
HCL
13 lines
202 B
HCL
module "bucket_meta" {
|
|
source = "./bucket_meta"
|
|
}
|
|
|
|
provider "aws" {
|
|
region = "us-east-2"
|
|
}
|
|
|
|
resource "aws_s3_bucket" "test" {
|
|
bucket = module.bucket_meta.name
|
|
tags = module.bucket_meta.tags
|
|
}
|