variables.tf
994 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "aws_region" {
description = "AWS region"
type = string
default = "us-east-1"
}
variable "environment" {
description = "Environment name"
type = string
default = "production"
}
variable "project_name" {
description = "Project name"
type = string
default = "ecommerce"
}
variable "api_domain_name" {
description = "API Gateway custom domain name"
type = string
default = "api.awsmpc.asia"
}
variable "wildcard_cert_domain" {
description = "Wildcard certificate domain"
type = string
default = "*.awsmpc.asia"
}
variable "vpc_link_name" {
description = "API Gateway VPC Link name"
type = string
default = "ecommerce-nlb-vpc-link"
}
variable "api_gateway_name" {
description = "API Gateway name"
type = string
default = "ecommerce-api-gateway"
}
variable "api_stage_name" {
description = "API Gateway stage name"
type = string
default = "prod"
}