D1
D1Database
resource cloudflare_d1_database
optional
jurisdiction?: String
Specify the location to restrict the D1 database to run and store data. If this option is present, the location hint is ignored.
cloudflare_d1_database
resource "cloudflare_d1_database" "example_d1_database" {
account_id = "023e105f4ecef8ad9ca31a8372d0c353"
name = "my-database"
jurisdiction = "eu"
primary_location_hint = "wnam"
}
data cloudflare_d1_database
cloudflare_d1_database
data "cloudflare_d1_database" "example_d1_database" {
account_id = "023e105f4ecef8ad9ca31a8372d0c353"
database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}
data cloudflare_d1_databases
optional
cloudflare_d1_databases
data "cloudflare_d1_databases" "example_d1_databases" {
account_id = "023e105f4ecef8ad9ca31a8372d0c353"
name = "name"
}