terraform { required_version = ">= 0.12.28" required_providers { aws = ">= 2.70.0" } } provider "aws" { profile = "dev-user" region = "ap-northeast-1" } variable "root_domain" {} variable "dev_laravel_domain" {} variable "github_personal_access_token" {} variable "web_ssh_key_name" {} variable "web_ssh_public_key" {} variable "web_server_count" {} variable "db_name" {} variable "db_username" {} va

