provider "aws" { region = var.region } variable "name" { description = "Name of the service. It will be used to name EC2, and RDS instances." default = "jinwei-me" } variable "region" { default = "us-west-2" description = "AWS region" } # RDS variable "rds_instance_class" { default = "db.t3.micro" } variable "rds_storage" { default = 20 } variable "rds_username" { default = "jinweime" } variable "rds_engine" { default = "mariadb" } variable "rds_engine_version" { default = "10.6" } variable "rds_parameter_group" { default = "mariadb10.6" } variable "rds_port" { default = 33060 } # EC 2 variable "ec2_instance_type" { default = "t2.micro" } #variable "ec2_key_name" { # description = "Name of key pair to log into the EC2 instance. The key pair must already exist." # type = string #}