Skip to content

Commit 81f4568

Browse files
committed
Merge branch 'ps-week-07-2026' into PLT-2137
2 parents 66aa927 + 4b9603d commit 81f4568

25 files changed

+363
-110
lines changed

docs/resources/cluster_aks.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,16 @@ import {
100100
}
101101
```
102102

103-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
103+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
104104

105105
```console
106106
% terraform import spectrocloud_cluster_aks.example example_id:project
107107
```
108108

109+
```console
110+
% terraform import spectrocloud_cluster_aks.example cluster_name:project
111+
```
112+
109113
Refer to the [Import section](/docs#import) to learn more.
110114

111115
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_aws.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,18 @@ import {
133133
}
134134
```
135135

136-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
136+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
137137

138138
```console
139139
terraform import spectrocloud_cluster_aws.example example_id:project
140140
```
141141

142+
```console
143+
terraform import spectrocloud_cluster_aws.example cluster_name:project
144+
```
145+
146+
147+
142148
Refer to the [Import section](/docs#import) to learn more.
143149

144150
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_azure.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ resource "spectrocloud_cluster_azure" "cluster" {
103103
## Import
104104

105105
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import)
106-
to import the resource spectrocloud_cluster_azure by using its `id` with the Palette `context` separated by a colon. For example:
106+
to import the resource spectrocloud_cluster_azure by using its `id` with the Palette `context` separated by a colon. For example:
107107

108108
```terraform
109109
import {
@@ -112,12 +112,16 @@ import {
112112
}
113113
```
114114

115-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
115+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
116116

117117
```console
118118
terraform import spectrocloud_cluster_azure.example example_id:project
119119
```
120120

121+
```console
122+
terraform import spectrocloud_cluster_azure.example cluster_name:project
123+
```
124+
121125
Refer to the [Import section](/docs#import) to learn more.
122126

123127

docs/resources/cluster_brownfield.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,23 @@ output "kubectl_command" {
104104
## Import
105105

106106
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import)
107-
to import the resource spectrocloud_cluster_brownfield by using its `id` with the Palette `context` and `cloud_type` separated by colons. For example:
107+
to import the resource spectrocloud_cluster_brownfield by using its `id` with the Palette `context` and `cloud_type` separated by colons. For example:
108108

109109
import {
110110
to = spectrocloud_cluster_brownfield.example
111111
id = "example_id:context:cloud_type"
112112
}
113113
```
114-
Using `terraform import`, import the cluster using the `id` colon separated with `context` and `cloud_type`. For example:
114+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context` and `cloud_type`. For example:
115115
116116
```console
117117
terraform import spectrocloud_cluster_brownfield.example cluster_uid:project:cloud_type
118118
```
119119

120+
```console
121+
terraform import spectrocloud_cluster_brownfield.example cluster_name:project:cloud_type
122+
```
123+
120124
Refer to the [Import section](/docs#import) to learn more.
121125

122126
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_custom_cloud.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,16 @@ import {
131131
}
132132
```
133133

134-
Using `terraform import`, import the cluster using the `id` colon separated with `context` colon separated with `custom_cloud_name`. For example:
134+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context` colon separated with `custom_cloud_name`. For example:
135135

136136
```console
137137
terraform import spectrocloud_cluster_custom_cloud.example example_id:project:nutanix
138138
```
139139

140+
```console
141+
terraform import spectrocloud_cluster_custom_cloud.example cluster_name:project:nutanix
142+
```
143+
140144
Refer to the [Import section](/docs#import) to learn more.
141145

142146
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_edge_native.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ resource "spectrocloud_cluster_edge_native" "cluster" {
6161
## Import
6262

6363
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import)
64-
to import the resource spectrocloud_cluster_edge_native by using its `id` with the Palette `context` separated by a colon. For example:
64+
to import the resource spectrocloud_cluster_edge_native by using its `id` with the Palette `context` separated by a colon. For example:
6565

6666
```terraform
6767
import {
@@ -70,12 +70,18 @@ import {
7070
}
7171
```
7272

73-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
73+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
7474

7575
```console
7676
terraform import spectrocloud_cluster_edge_native.example example_id:project
7777
```
7878

79+
```console
80+
terraform import spectrocloud_cluster_edge_native.example cluster_name:project
81+
```
82+
83+
84+
7985
Refer to the [Import section](/docs#import) to learn more.
8086

8187
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_eks.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ resource "spectrocloud_cluster_eks" "cluster" {
9292
## Import
9393

9494
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import)
95-
to import the resource spectrocloud_cluster_eks by using its `id` with the Palette `context` separated by a colon. For example:
95+
to import the resource spectrocloud_cluster_eks by using its `id` with the Palette `context` separated by a colon. For example:
9696

9797
```terraform
9898
import {
@@ -101,12 +101,17 @@ import {
101101
}
102102
```
103103

104-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
104+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
105105

106106
```console
107107
terraform import spectrocloud_cluster_eks.example example_id:project
108108
```
109109

110+
111+
```console
112+
terraform import spectrocloud_cluster_eks.example cluster_name:project
113+
```
114+
110115
Refer to the [Import section](/docs#import) to learn more.
111116

112117
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_gcp.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,16 @@ import {
9090
}
9191
```
9292

93-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
93+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
9494

9595
```console
9696
terraform import spectrocloud_cluster_gcp.example example_id:project
9797
```
9898

99+
```console
100+
terraform import spectrocloud_cluster_gcp.example cluster_name:project
101+
```
102+
99103
Refer to the [Import section](/docs#import) to learn more.
100104

101105
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_gke.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,16 @@ import {
6060
}
6161
```
6262

63-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
63+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
6464

6565
```console
6666
% terraform import spectrocloud_cluster_gke.example example_id:project
6767
```
6868

69+
```console
70+
% terraform import spectrocloud_cluster_gke.example cluster_name:project
71+
```
72+
6973
Refer to the [Import section](/docs#import) to learn more.
7074

7175
<!-- schema generated by tfplugindocs -->

docs/resources/cluster_maas.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,17 @@ import {
115115
}
116116
```
117117

118-
Using `terraform import`, import the cluster using the `id` colon separated with `context`. For example:
118+
Using `terraform import`, import the cluster using the `cluster_name` or `id` colon separated with `context`. For example:
119119

120120
```console
121121
terraform import spectrocloud_cluster_maas.example example_id:project
122122
```
123123

124+
125+
```console
126+
terraform import spectrocloud_cluster_maas.example cluster_name:project
127+
```
128+
124129
Refer to the [Import section](/docs#import) to learn more.
125130

126131
<!-- schema generated by tfplugindocs -->

0 commit comments

Comments
 (0)