forked from PinSpace-Org/GistPin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimports.tf
More file actions
54 lines (44 loc) 路 836 Bytes
/
Copy pathimports.tf
File metadata and controls
54 lines (44 loc) 路 836 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
48
49
50
51
52
53
54
import {
id = "vpc-12345678"
to = aws_vpc.main
}
import {
id = "subnet-12345678"
to = aws_subnet.public_a
}
import {
id = "subnet-87654321"
to = aws_subnet.private_a
}
import {
id = "gistpin-eks-cluster"
to = aws_eks_cluster.main
}
import {
id = "gistpin-db-prod"
to = aws_db_instance.main
}
import {
id = "gistpin-terraform-state"
to = aws_s3_bucket.terraform_state
}
import {
id = "gistpin-terraform-locks"
to = aws_dynamodb_table.terraform_locks
}
import {
id = "eks-node-role"
to = aws_iam_role.eks_node
}
import {
id = "sg-12345678"
to = aws_security_group.backend
}
import {
id = "arn:aws:elasticloadbalancing:us-east-1:123456789012:loadbalancer/app/gistpin-alb/abcdef123456"
to = aws_lb.main
}
import {
id = "Z1234567890ABCDEFGHIJ_gistpin.io_A"
to = aws_route53_record.api
}