Skip to content

Commit

Permalink
Add support for Kafka topics
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinshenker committed Oct 17, 2023
1 parent 64c3ba0 commit 6661134
Show file tree
Hide file tree
Showing 7 changed files with 693 additions and 142 deletions.
11 changes: 11 additions & 0 deletions digitalocean/database/resource_database_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,17 @@ resource "digitalocean_database_cluster" "foobar" {
tags = ["production"]
}`

const testAccCheckDigitalOceanDatabaseClusterKafka = `
resource "digitalocean_database_cluster" "foobar" {
name = "%s"
engine = "kafka"
version = "%s"
size = "db-s-1vcpu-2gb"
region = "nyc1"
node_count = 3
tags = ["production"]
}`

const testAccCheckDigitalOceanDatabaseClusterConfigWithEvictionPolicy = `
resource "digitalocean_database_cluster" "foobar" {
name = "%s"
Expand Down
Loading

0 comments on commit 6661134

Please sign in to comment.