-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathefs_mount_target.tf
48 lines (44 loc) · 1.21 KB
/
efs_mount_target.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# aws_efs_mount_target.test_automation1_2:
resource "aws_efs_mount_target" "test_automation1_1" {
depends_on = [
aws_efs_file_system.test_automation1,
]
file_system_id = aws_efs_file_system.test_automation1.id
security_groups = [
"sg-5b307c30",
]
subnet_id = "subnet-0385724146fd0afb9"
}
# aws_efs_mount_target.test_automation1_3:
resource "aws_efs_mount_target" "test_automation1_2" {
depends_on = [
aws_efs_file_system.test_automation1,
]
file_system_id = aws_efs_file_system.test_automation1.id
security_groups = [
"sg-5b307c30",
]
subnet_id = "subnet-00b0c102e6ed49c6c"
}
# aws_efs_mount_target.test_automation2_1:
resource "aws_efs_mount_target" "test_automation2_1" {
depends_on = [
aws_efs_file_system.test_automation2,
]
file_system_id = aws_efs_file_system.test_automation2.id
security_groups = [
"sg-5b307c30",
]
subnet_id = "subnet-0385724146fd0afb9"
}
# aws_efs_mount_target.test_automation2_2:
resource "aws_efs_mount_target" "test_automation2_2" {
depends_on = [
aws_efs_file_system.test_automation2,
]
file_system_id = aws_efs_file_system.test_automation2.id
security_groups = [
"sg-5b307c30",
]
subnet_id = "subnet-00b0c102e6ed49c6c"
}