-
Notifications
You must be signed in to change notification settings - Fork 44
/
vms.tf
181 lines (153 loc) · 7.29 KB
/
vms.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# Copyright © 2021-2024, SAS Institute Inc., Cary, NC, USA. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
locals {
rwx_filestore_endpoint = (var.storage_type == "none"
? ""
: local.storage_type_backend == "efs" ? aws_efs_file_system.efs-fs[0].dns_name
: local.storage_type_backend == "ontap" ? aws_fsx_ontap_storage_virtual_machine.ontap-svm[0].endpoints[0]["nfs"][0]["dns_name"] : module.nfs[0].private_ip_address
)
rwx_filestore_path = (var.storage_type == "none"
? ""
: local.storage_type_backend == "efs" ? "/"
: local.storage_type_backend == "ontap" ? "/ontap" : "/export"
)
}
# ONTAP File System - https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/fsx_ontap_file_system
resource "aws_fsx_ontap_file_system" "ontap-fs" {
count = local.storage_type_backend == "ontap" ? 1 : 0
storage_capacity = var.aws_fsx_ontap_file_system_storage_capacity
fsx_admin_password = var.aws_fsx_ontap_fsxadmin_password
# Exposing as an input variable since not all regions support both types
deployment_type = var.aws_fsx_ontap_deployment_type
# If deployment_type is SINGLE_AZ_1 then subnet_ids should have 1 subnet ID
# If deployment_type is MULTI_AZ_1 then subnet_ids should have 2 subnet IDs, there is a 2 subnet ID maximum
subnet_ids = var.aws_fsx_ontap_deployment_type == "SINGLE_AZ_1" ? [module.vpc.private_subnets[0]] : module.vpc.private_subnets
throughput_capacity = var.aws_fsx_ontap_file_system_throughput_capacity
preferred_subnet_id = module.vpc.private_subnets[0]
security_group_ids = [local.workers_security_group_id]
tags = merge(local.tags, { "Name" : "${var.prefix}-ontap-fs" })
depends_on = [module.ontap]
}
# ONTAP storage virtual machine and volume resources
resource "aws_fsx_ontap_storage_virtual_machine" "ontap-svm" {
count = local.storage_type_backend == "ontap" ? 1 : 0
file_system_id = aws_fsx_ontap_file_system.ontap-fs[0].id
name = "${var.prefix}-ontap-svm"
tags = merge(local.tags, { "Name" : "${var.prefix}-ontap-svm" })
}
# A default volume gets created with the svm, we may want another
# in order to configure desired attributes
resource "aws_fsx_ontap_volume" "ontap-vol" {
count = local.storage_type_backend == "ontap" ? 1 : 0
name = replace("${var.prefix}_ontap_vol", "-", "_")
junction_path = "/ontap"
size_in_megabytes = aws_fsx_ontap_file_system.ontap-fs[0].storage_capacity * 1024 # any whole number in the range of 20–314572800 to specify the size in mebibytes (MiB)
storage_efficiency_enabled = true
storage_virtual_machine_id = aws_fsx_ontap_storage_virtual_machine.ontap-svm[0].id
tags = merge(local.tags, { "Name" : "${var.prefix}-ontap-vol" })
}
# EFS File System - https://www.terraform.io/docs/providers/aws/r/efs_file_system.html
resource "aws_efs_file_system" "efs-fs" {
count = local.storage_type_backend == "efs" ? 1 : 0
creation_token = "${var.prefix}-efs"
performance_mode = var.efs_performance_mode
throughput_mode = var.efs_throughput_mode
provisioned_throughput_in_mibps = var.efs_throughput_mode == "provisioned" ? var.efs_throughput_rate : null
tags = merge(local.tags, { "Name" : "${var.prefix}-efs" })
encrypted = var.enable_efs_encryption
}
# EFS Mount Target - https://www.terraform.io/docs/providers/aws/r/efs_mount_target.html
resource "aws_efs_mount_target" "efs-mt" {
# NOTE - Testing. use num_azs = 2
count = local.storage_type_backend == "efs" ? length(module.vpc.private_subnets) : 0
file_system_id = aws_efs_file_system.efs-fs[0].id
subnet_id = element(module.vpc.private_subnets, count.index)
security_groups = [local.workers_security_group_id]
}
# Defining the cloud-config to use
data "cloudinit_config" "jump" {
count = var.create_jump_vm ? 1 : 0
gzip = true
base64_encode = true
part {
content_type = "text/cloud-config"
content = templatefile("${path.module}/files/cloud-init/jump/cloud-config", {
mounts = (var.storage_type == "none"
? "[]"
: jsonencode(
["${local.rwx_filestore_endpoint}:${local.rwx_filestore_path}",
var.jump_rwx_filestore_path,
"nfs",
"rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport",
"0",
"0"
])
)
rwx_filestore_endpoint = local.rwx_filestore_endpoint
rwx_filestore_path = local.rwx_filestore_path
jump_rwx_filestore_path = var.jump_rwx_filestore_path
vm_admin = var.jump_vm_admin
}
)
}
depends_on = [aws_efs_file_system.efs-fs, aws_fsx_ontap_storage_virtual_machine.ontap-svm, aws_efs_mount_target.efs-mt, module.nfs]
}
# Jump BOX
module "jump" {
count = var.create_jump_vm ? 1 : 0
source = "./modules/aws_vm"
name = "${var.prefix}-jump"
tags = local.tags
subnet_id = local.jump_vm_subnet
security_group_ids = [local.security_group_id, local.workers_security_group_id]
create_public_ip = var.create_jump_public_ip
os_disk_type = var.os_disk_type
os_disk_size = var.os_disk_size
os_disk_delete_on_termination = var.os_disk_delete_on_termination
os_disk_iops = var.os_disk_iops
vm_type = var.jump_vm_type
vm_admin = var.jump_vm_admin
ssh_public_key = local.ssh_public_key
enable_ebs_encryption = var.enable_ebs_encryption
cloud_init = data.cloudinit_config.jump[0].rendered
depends_on = [module.nfs]
}
# Defining the cloud-config to use
data "cloudinit_config" "nfs" {
count = var.storage_type == "standard" ? 1 : 0
gzip = true
base64_encode = true
part {
content_type = "text/cloud-config"
content = templatefile("${path.module}/files/cloud-init/nfs/cloud-config", {
vm_admin = var.nfs_vm_admin
public_subnet_cidrs = join(" ", module.vpc.public_subnet_cidrs)
private_subnet_cidrs = join(" ", module.vpc.private_subnet_cidrs)
}
)
}
}
# NFS Server VM
module "nfs" {
count = var.storage_type == "standard" ? 1 : 0
source = "./modules/aws_vm"
name = "${var.prefix}-nfs-server"
tags = local.tags
subnet_id = local.nfs_vm_subnet
security_group_ids = [local.security_group_id, local.workers_security_group_id]
create_public_ip = var.create_nfs_public_ip
os_disk_type = var.os_disk_type
os_disk_size = var.os_disk_size
os_disk_delete_on_termination = var.os_disk_delete_on_termination
os_disk_iops = var.os_disk_iops
data_disk_count = 4
data_disk_type = var.nfs_raid_disk_type
data_disk_size = var.nfs_raid_disk_size
data_disk_iops = var.nfs_raid_disk_iops
data_disk_availability_zone = local.nfs_vm_subnet_az
vm_type = var.nfs_vm_type
vm_admin = var.nfs_vm_admin
ssh_public_key = local.ssh_public_key
enable_ebs_encryption = var.enable_ebs_encryption
cloud_init = data.cloudinit_config.nfs[0].rendered
}