provisioning-2/env/dev/provider.tf

17 lines
258 B
Terraform
Raw Permalink Normal View History

2025-07-03 17:09:15 +09:00
# ---------------------------
# プロバイダ設定
# ---------------------------
# AWS
provider "aws" {
region = "ap-northeast-1"
}
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.54.1"
}
}
}