Mongey / terraform-provider-confluentcloud

A Terraform provider for managing resource in confluent.cloud
MIT License
110 stars 47 forks source link

is the default "deployment" on Cluster type "Basic"? #54

Closed skyzhou01 closed 3 years ago

skyzhou01 commented 3 years ago

In the golang code, I am trying to figure out the default cluster type ( https://github.com/Mongey/terraform-provider-confluentcloud/blob/master/ccloud/resource_kafka_cluster.go). I think that if we don't specify "deployment" in the following then Basic cluster type will be created. Would you be able to confirm that this is correct?

resource "confluentcloud_kafka_cluster" "test" {
  name             = "provider-test"
  service_provider = "aws"
  region           = "eu-west-1"
  availability     = "LOW"
  environment_id   = confluentcloud_environment.environment.id
}

Please ignore the question. I have found the answer.

skyzhou01 commented 3 years ago

Question answered.