This commit is contained in:
2023-01-06 13:29:00 +09:00
parent f537a31294
commit 9a60aa0f34
27 changed files with 389 additions and 225 deletions

View File

@ -0,0 +1,6 @@
resource "aws_efs_mount_target" "mount" {
file_system_id = var.fs_id
subnet_id = var.subnet_id
security_groups = var.sg_list
}

View File

View File

@ -0,0 +1,14 @@
variable "fs_id" {
description = "fs_id"
type = string
}
variable "sg_list" {
description = "security group list"
type = list(string)
}
variable "subnet_id" {
description = "security group list"
type = string
}