mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-10 12:01:48 -04:00
Signed-off-by: Diogenes Fernandes <diofeher@gmail.com> Signed-off-by: Diógenes Fernandes <diofeher@gmail.com> Co-authored-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org>
18 lines
281 B
HCL
18 lines
281 B
HCL
terraform {
|
|
required_providers {
|
|
aws = {
|
|
source = "hashicorp/aws"
|
|
version = "6.9.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
variable "bucket_name" {
|
|
type = string
|
|
default = "bucket-prod"
|
|
}
|
|
|
|
output "stuff" {
|
|
value = provider::aws::arn_build("aws", "s3", "", "", var.bucket_name)
|
|
}
|