mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
Signed-off-by: Janos Bonic <86970079+janosdebugs@users.noreply.github.com> Co-authored-by: James Humphries <James@james-humphries.co.uk>
9 lines
140 B
HCL
9 lines
140 B
HCL
variable "bucket_name" {}
|
|
|
|
provider "aws" {
|
|
region = "us-east-2"
|
|
}
|
|
|
|
resource "aws_s3_bucket" "test" {
|
|
bucket = var.bucket_name
|
|
} |