forked from zeze1004/terraform-eks-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvar.tf
24 lines (24 loc) · 719 Bytes
/
var.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
locals {
env = "Dev"
project = "sulsul"
name = join("-", [local.env, local.project])
vpc_id = "vpc-0d374f17684f2184c"
private_subnets = [
"subnet-040686d6eb1d6473e",
"subnet-06af4cb19c69fe9b8",
"subnet-00f7d03a7fd832f73",
"subnet-0965e3d1cc0484dde",
]
kms_key_arn = "arn:aws:kms:ap-northeast-2:375839059348:key/8069539f-66c6-4308-a7dd-fafef5dc31f0"
secrets_manager_arn = "arn:aws:secretsmanager:ap-northeast-2:375839059348:secret:sulsul_sample_SecretsManager-bLM965"
aws_credential = {
account_id = "375839059348"
profile = "sulsul"
region = "ap-northeast-2"
}
tags = {
Environment = "Dev"
Terraform = "true"
Project = "sulsul"
}
}