The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
hyperlane-monorepo/rust/terraform/modules/efs/outputs.tf

19 lines
527 B

output "file_system_id" {
description = "The ID of the EFS file system"
value = aws_efs_file_system.validator_fs.id
}
output "access_point_id" {
description = "The ID of the EFS access point"
value = aws_efs_access_point.validator_ap.id
}
output "mount_target_id" {
description = "The ID of the EFS mount target"
value = aws_efs_mount_target.validator_mt.id
}
output "access_point_arn" {
description = "The ARN of the EFS access point"
value = aws_efs_access_point.validator_ap.arn
}