Skip to content

Commit

Permalink
Add AWS terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
muratugureminoglu committed Dec 25, 2024
1 parent 6cb071b commit 06c6257
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions terraform/aws/provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}

# Configure the AWS Provider
provider "aws" {
region = "us-east-1"
}

# Create a VPC
resource "aws_vpc" "example" {
cidr_block = "10.0.0.0/16"
}

0 comments on commit 06c6257

Please sign in to comment.