Skip to content

Instantly share code, notes, and snippets.

@iamtheindian
Created January 16, 2021 09:17
Show Gist options
  • Save iamtheindian/6a462d17f6ef3202c40e0af8086c68bd to your computer and use it in GitHub Desktop.
Save iamtheindian/6a462d17f6ef3202c40e0af8086c68bd to your computer and use it in GitHub Desktop.
resource "aws_efs_file_system" "efs_file" {
creation_token = "task2"
tags = {
Name = "EfsVolume"
}
}
resource "aws_efs_mount_target" "mount_target" {
file_system_id = aws_efs_file_system.efs_file.id
subnet_id = aws_instance.webos.subnet_id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment