Skip to content

Commit 73fe24d

Browse files
chore: add warning about changing self_managed flag (#119)
1 parent 440d70c commit 73fe24d

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Usage examples are located in [terraform provider repo](https://github.com/casta
355355
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
356356
| <a name="requirement_azuread"></a> [azuread](#requirement\_azuread) | ~> 3 |
357357
| <a name="requirement_azurerm"></a> [azurerm](#requirement\_azurerm) | >= 3.7.0 |
358-
| <a name="requirement_castai"></a> [castai](#requirement\_castai) | ~> 7.73 |
358+
| <a name="requirement_castai"></a> [castai](#requirement\_castai) | >= 8.3 |
359359
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 3.0.0 |
360360
| <a name="requirement_null"></a> [null](#requirement\_null) | ~> 3 |
361361

@@ -365,9 +365,9 @@ Usage examples are located in [terraform provider repo](https://github.com/casta
365365
|------|---------|
366366
| <a name="provider_azuread"></a> [azuread](#provider\_azuread) | ~> 3 |
367367
| <a name="provider_azurerm"></a> [azurerm](#provider\_azurerm) | >= 3.7.0 |
368-
| <a name="provider_castai"></a> [castai](#provider\_castai) | ~> 7.73 |
369-
| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 3.0.0 |
370-
| <a name="provider_null"></a> [null](#provider\_null) | ~> 3 |
368+
| <a name="provider_castai"></a> [castai](#provider\_castai) | 7.62.0 |
369+
| <a name="provider_helm"></a> [helm](#provider\_helm) | 2.17.0 |
370+
| <a name="provider_null"></a> [null](#provider\_null) | 3.2.4 |
371371

372372
## Modules
373373

@@ -458,7 +458,7 @@ No modules.
458458
| <a name="input_pod_pinner_values"></a> [pod\_pinner\_values](#input\_pod\_pinner\_values) | List of YAML formatted string values for agent helm chart | `list(string)` | `[]` | no |
459459
| <a name="input_pod_pinner_version"></a> [pod\_pinner\_version](#input\_pod\_pinner\_version) | Version of pod-pinner helm chart. Default latest | `string` | `null` | no |
460460
| <a name="input_resource_group"></a> [resource\_group](#input\_resource\_group) | n/a | `string` | n/a | yes |
461-
| <a name="input_self_managed"></a> [self\_managed](#input\_self\_managed) | Whether CAST AI components' upgrades are managed by a customer; by default upgrades are managed CAST AI central system. | `bool` | `false` | no |
461+
| <a name="input_self_managed"></a> [self\_managed](#input\_self\_managed) | Whether CAST AI components' upgrades are managed by a customer; by default upgrades are managed CAST AI central system. WARNING: changing this after the module was created is not supported. | `bool` | `false` | no |
462462
| <a name="input_spot_handler_values"></a> [spot\_handler\_values](#input\_spot\_handler\_values) | List of YAML formatted string values for spot-handler helm chart | `list(string)` | `[]` | no |
463463
| <a name="input_spot_handler_version"></a> [spot\_handler\_version](#input\_spot\_handler\_version) | Version of castai-spot-handler helm chart. If not provided, latest version will be used. | `string` | `null` | no |
464464
| <a name="input_subscription_id"></a> [subscription\_id](#input\_subscription\_id) | Azure subscription ID | `string` | n/a | yes |
@@ -475,4 +475,5 @@ No modules.
475475
| <a name="output_castai_node_configurations"></a> [castai\_node\_configurations](#output\_castai\_node\_configurations) | Map of node configurations ids by name |
476476
| <a name="output_castai_node_templates"></a> [castai\_node\_templates](#output\_castai\_node\_templates) | Map of node template by name |
477477
| <a name="output_cluster_id"></a> [cluster\_id](#output\_cluster\_id) | CAST.AI cluster id, which can be used for accessing cluster data using API |
478+
| <a name="output_organization_id"></a> [organization\_id](#output\_organization\_id) | CAST.AI organization id of the cluster |
478479
<!-- END_TF_DOCS -->

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ variable "kvisor_version" {
236236
variable "self_managed" {
237237
type = bool
238238
default = false
239-
description = "Whether CAST AI components' upgrades are managed by a customer; by default upgrades are managed CAST AI central system."
239+
description = "Whether CAST AI components' upgrades are managed by a customer; by default upgrades are managed CAST AI central system. WARNING: changing this after the module was created is not supported."
240240
}
241241

242242
variable "wait_for_cluster_ready" {

0 commit comments

Comments
 (0)