Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit b83a079

Browse files
authored
Add deprecation notes #minor. (#303)
1 parent 390dc41 commit b83a079

16 files changed

Lines changed: 37 additions & 13 deletions

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.16.0
1+
1.17.0

.semaphore/semaphore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ global_job_config:
1010
- name: vault_sem2_approle
1111
prologue:
1212
commands:
13-
- sem-version go 1.16
13+
- sem-version go 1.17
1414
- export "GOPATH=$(go env GOPATH)"
1515
- >-
1616
export

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [Terraform Provider for Confluent Cloud](https://github.com/confluentinc/terraform-provider-confluentcloud) is deprecated in favor of [Terraform Provider for Confluent](https://github.com/confluentinc/terraform-provider-confluent)
2+
3+
## 0.6.0 (May 3, 2022)
4+
5+
[Full Changelog](https://github.com/confluentinc/terraform-provider-confluentcloud/compare/v0.5.0...v0.6.0)
6+
7+
* Deprecated the [Confluent Cloud Terraform Provider](https://github.com/confluentinc/terraform-provider-confluentcloud) in favor of the [Confluent Terraform Provider](https://github.com/confluentinc/terraform-provider-confluent).
8+
19
## 0.5.0 (March 9, 2022)
210

311
[Full Changelog](https://github.com/confluentinc/terraform-provider-confluentcloud/compare/v0.4.0...v0.5.0)

README.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
1-
# Terraform Provider for Confluent Cloud
2-
3-
The Terraform Confluent Cloud provider is a plugin for Terraform that allows for the lifecycle management of Confluent Cloud resources.
4-
This provider is maintained by Confluent.
5-
6-
## Quick Starts
7-
8-
- [Running an example](docs/guides/sample-project.md)
9-
- [Developing the provider](docs/DEVELOPING.md)
1+
# [Confluent Cloud Terraform Provider](https://github.com/confluentinc/terraform-provider-confluentcloud) is deprecated in favor of [Confluent Terraform Provider](https://github.com/confluentinc/terraform-provider-confluent)
102

113
## Documentation
124

13-
Full documentation is available on the [Terraform website](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs).
5+
Full documentation is available on the [Terraform website](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
146

157
## License
168

docs/data-sources/confluentcloud_environment.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ description: |-
88

99
# confluentcloud_environment Data Source
1010

11+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
12+
1113
`confluentcloud_environment` describes an Environment data source. The data source requires the ID of the Environment (e.g., `env-abc123`).
1214

1315
## Example Usage

docs/data-sources/confluentcloud_kafka_cluster.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ description: |-
88

99
# confluentcloud_kafka_cluster Data Source
1010

11+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
12+
1113
`confluentcloud_kafka_cluster` describes a Kafka cluster data source. The data source requires the ID of the Kafka cluster (e.g., `lkc-abc123`) and the Environment ID it belongs to (e.g., `env-xyz456`).
1214

1315
## Example Usage

docs/data-sources/confluentcloud_kafka_topic.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ description: |-
88

99
# confluentcloud_kafka_topic Data Source
1010

11+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
12+
1113
`confluentcloud_kafka_topic` describes a Kafka Topic data source.
1214

1315
## Example Usage

docs/data-sources/confluentcloud_service_account.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ description: |-
88

99
# confluentcloud_service_account Data Source
1010

11+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
12+
1113
`confluentcloud_service_account` describes a Service Account data source. The data source requires the ID of the Service Account (e.g., `sa-abc123`).
1214

1315
## Example Usage

docs/guides/sample-project.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ page_title: "Sample Project"
44

55
# Sample Project for Confluent Cloud Terraform Provider
66

7+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
8+
79
Use the Confluent Cloud Terraform provider to automate the workflow for creating
810
a _Service Account_, a _Confluent Cloud environment_, a _Kafka cluster_, and
911
_Topics_. Also, you can use this provider to assign permissions (_ACLs_) that

docs/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ description: |-
55
66
---
77

8-
# Confluent Cloud Provider
8+
# [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs)
9+
10+
!> **Warning:** The [Confluent Cloud Provider](https://registry.terraform.io/providers/confluentinc/confluentcloud/latest/docs) is deprecated in favor of the [Confluent Provider](https://registry.terraform.io/providers/confluentinc/confluent/latest/docs).
911

1012
Simplify Apache Kafka Terraform deployment with the Confluent Cloud Terraform Provider. Manage Environments, Kafka Clusters, Kafka Topics, Kafka ACLs, Service Accounts, and more in Confluent Cloud.
1113

0 commit comments

Comments
 (0)