Skip to content

Commit 45e4e9a

Browse files
committed
release: v0.6.0
1 parent 52bf7bb commit 45e4e9a

4 files changed

Lines changed: 20 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [0.6.0](https://github.com/Altinity/terraform-provider-altinitycloud/compare/v0.5.2...v0.6.0)
88
### Added
9-
- Documentation: "Asynchronous Provisioning" section in provider index, "Cloud Connect" sections in all environment resource docs, and clarify expected DISCONNECTED status during first provisioning.
9+
- Documentation: "Asynchronous Provisioning" section in provider index, "Cloud Connect" sections in all environment resource docs, and clarify expected DISCONNECTED status during first provisioning [52bf7bb](https://github.com/Altinity/terraform-provider-altinitycloud/commit/52bf7bb).
1010
- Documentation: "Deprovision / Destroy" section in all environment resources, "Troubleshooting" and "Support" sections in provider index [35663a9](https://github.com/Altinity/terraform-provider-altinitycloud/commit/35663a9).
1111
- User-configurable delete timeouts for all environment resources [#220](https://github.com/Altinity/terraform-provider-altinitycloud/pull/220).
1212
- Real-time TTY progress output for env status polling [9b506d3](https://github.com/Altinity/terraform-provider-altinitycloud/commit/9b506d3).

docs/data-sources/env_azure_status.md

Lines changed: 16 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,24 @@ data "altinitycloud_env_azure_status" "current" {
2020

2121
### Wait for Azure environment to be fully provisioned:
2222
```terraform
23-
resource "altinitycloud_env_aws" "this" {
24-
name = "acme-staging"
25-
aws_account_id = "123456789012"
26-
region = "us-east-1"
27-
zones = ["us-east-1a", "us-east-1b"]
28-
cidr = "10.67.0.0/21"
29-
30-
node_groups = [
31-
{
32-
node_type = "t4g.large"
33-
capacity_per_zone = 10
34-
reservations = ["SYSTEM", "ZOOKEEPER"]
35-
},
36-
{
37-
node_type = "m6i.large"
38-
capacity_per_zone = 10
39-
reservations = ["CLICKHOUSE"]
40-
}
41-
]
42-
cloud_connect = true
23+
resource "altinitycloud_env_azure" "this" {
24+
name = "acme-staging"
25+
cidr = "10.136.0.0/21"
26+
region = "eastus"
27+
zones = ["eastus-1", "eastus-2"]
28+
tenant_id = "f3c1e3cb-3d92-4315-b98c-0a66676da2e8"
29+
subscription_id = "3f919947-3102-4210-82ee-4d2ca69f2a01"
30+
31+
node_groups = [{
32+
node_type = "Standard_B2s_v2"
33+
capacity_per_zone = 3
34+
reservations = ["CLICKHOUSE", "ZOOKEEPER", "SYSTEM"]
35+
}]
4336
}
4437
45-
data "altinitycloud_env_aws_status" "current" {
46-
name = altinitycloud_env_aws.this.name
47-
wait_for_applied_spec_revision = altinitycloud_env_aws.this.spec_revision
38+
data "altinitycloud_env_azure_status" "current" {
39+
name = altinitycloud_env_azure.this.name
40+
wait_for_applied_spec_revision = altinitycloud_env_azure.this.spec_revision
4841
}
4942
```
5043

docs/data-sources/env_hcloud_status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ resource "altinitycloud_env_hcloud" "this" {
5353
}
5454
5555
data "altinitycloud_env_hcloud_status" "current" {
56-
name = altinitycloud_env_gcp.this.name
57-
wait_for_applied_spec_revision = altinitycloud_env_gcp.this.spec_revision
56+
name = altinitycloud_env_hcloud.this.name
57+
wait_for_applied_spec_revision = altinitycloud_env_hcloud.this.spec_revision
5858
}
5959
```
6060

docs/resources/env_k8s.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Bring Your Own Kubernetes (BYOK) environment resource.
1313

1414
### Cloud Connect Module
1515

16-
Kubernetes environments require the [terraform-altinitycloud-connect](https://github.com/altinity/terraform-altinitycloud-connect) module to install the Altinity.Cloud agent in your cluster. This module deploys the necessary components that allow Altinity.Cloud to manage ClickHouse clusters inside your Kubernetes cluster. Set `cloud_connect = true` on the environment resource and add `depends_on` to ensure proper ordering during creation and destruction.
16+
Kubernetes environments require the [terraform-altinitycloud-connect](https://github.com/altinity/terraform-altinitycloud-connect) module to install the Altinity.Cloud agent in your cluster. This module deploys the necessary components that allow Altinity.Cloud to manage ClickHouse clusters inside your Kubernetes cluster. Add `depends_on` to the environment resource to ensure proper ordering during creation and destruction.
1717

1818
## Example Usage
1919

0 commit comments

Comments
 (0)