【发布时间】:2023-01-14 00:36:30
【问题描述】:
如果有人知道如何通过 Terraform 设置 Athena 查询结果位置,请帮助我
我的代码如下所示
resource "aws_athena_workgroup" "athena_query_result" {
name = var.name
configuration {
enforce_workgroup_configuration = true
publish_cloudwatch_metrics_enabled = true
result_configuration {
output_location = "s3://athena-query-location/output/"
}
}
}
【问题讨论】:
标签: terraform terraform-provider-aws amazon-athena