You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the go client allows you to create a dedicated cluster but does not allow you to set the networking options.
"However, that struct is not on the ClusterCreateConfig (aka the struct that is used for the creation of the cluster) but rather in the return payload."
In order to function correctly, it needs to support passing the following options when creating a dedicated cluster
As referenced by Terrafrom provider for confluent cloud - private networking
Currently, the go client allows you to create a dedicated cluster but does not allow you to set the networking options.
"However, that struct is not on the ClusterCreateConfig (aka the struct that is used for the creation of the cluster) but rather in the return payload."
In order to function correctly, it needs to support passing the following options when creating a dedicated cluster
type ClusterDeploymentNetworkAccess struct {
PublicInternet []interface{}
json:"public_internet"
VpcPeering []interface{}
json:"vpc_peering"
PrivateLink []interface{}
json:"private_link"
TransitGateway []interface{}
json:"transit_gateway"
}
The text was updated successfully, but these errors were encountered: