tf 추가

This commit is contained in:
ByeonJungHun
2024-11-28 16:51:53 +09:00
parent b75c0e2f7a
commit 5186b2b0fe
2 changed files with 31 additions and 0 deletions

14
tf/aws.tf Normal file
View File

@@ -0,0 +1,14 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.78.0"
}
}
}
provider "aws" {
region = var.region
access_key = var.accesskey
secret_key = var.secretkey
}