Skip to content

Commit b97bb6c

Browse files
Create main.tf
1 parent c42c376 commit b97bb6c

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

main.tf

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
terraform {
2+
required_version = "~> 1.7"
3+
4+
required_providers {
5+
aws = {
6+
source = "hashicorp/aws"
7+
version = "~> 5.79.0"
8+
9+
}
10+
11+
}
12+
}
13+
14+
provider "aws" {
15+
region = "us-east-2"
16+
17+
18+
19+
}
20+
21+
22+
resource "aws_s3_bucket" "s3" {
23+
bucket = "bbbbccckkkkk"
24+
25+
26+
}
27+
28+

0 commit comments

Comments
 (0)