Skip to content

Commit 5aa9b9c

Browse files
committed
added terraform
1 parent 1e45ab5 commit 5aa9b9c

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

main.tf

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
provider "aws" {
2+
region = "us-east-1"
3+
access_key = "123"
4+
secret_key = "xyz"
5+
skip_credentials_validation = true
6+
skip_requesting_account_id = true
7+
skip_metadata_api_check = true
8+
s3_force_path_style = true
9+
endpoints {
10+
s3 = "http://localhost:4572"
11+
}
12+
}
13+
14+
resource "aws_s3_bucket" "b" {
15+
bucket = "demo-bucket-terraform"
16+
acl = "public-read"
17+
}

0 commit comments

Comments
 (0)