terraform / 0.11.7 / providers / aws / r / athena_database.html /

aws_athena_database

Provides an Athena database.

Example Usage

resource "aws_s3_bucket" "hoge" {
  bucket = "hoge"
}

resource "aws_athena_database" "hoge" {
  name = "database_name"
  bucket = "${aws_s3_bucket.hoge.bucket}"
}

Argument Reference

The following arguments are supported:

  • name - (Required) Name of the database to create.
  • bucket - (Required) Name of s3 bucket to save the results of the query execution.
  • force_destroy - (Optional, Default: false) A boolean that indicates all tables should be deleted from the database so that the database can be destroyed without error. The tables are not recoverable.

Attributes Reference

In addition to all arguments above, the following attributes are exported:

  • id - The database name

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/athena_database.html