We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21cb5fa commit fc68130Copy full SHA for fc68130
terraform/bucket.tf
@@ -0,0 +1,4 @@
1
+module "s3-bucket" {
2
+ source = "terraform-aws-modules/s3-bucket/aws"
3
+ version = "4.1.0"
4
+}
terraform/provider.tf
@@ -0,0 +1,12 @@
+terraform {
+ required_providers {
+ aws = {
+ source = "hashicorp/aws"
5
+ version = "5.42.0"
6
+ }
7
8
9
+
10
+provider "aws" {
11
+ region = "us-east-1"
12
0 commit comments