We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02bd20 commit 33a3163Copy full SHA for 33a3163
website/content/v1.8/talos-guides/install/cloud-platforms/aws.md
@@ -240,8 +240,7 @@ worker.yaml is valid for cloud mode
240
#### Create the Control Plane Nodes
241
242
```bash
243
-CP_COUNT=1
244
-while [[ "$CP_COUNT" -lt 4 ]]; do
+for CP_COUNT in {1..3}; do
245
aws ec2 run-instances \
246
--region $REGION \
247
--image-id $AMI \
@@ -252,7 +251,6 @@ while [[ "$CP_COUNT" -lt 4 ]]; do
252
251
--security-group-ids $SECURITY_GROUP \
253
--associate-public-ip-address \
254
--tag-specifications "ResourceType=instance,Tags=[{Key=Name,Value=talos-aws-tutorial-cp-$CP_COUNT}]"
255
- ((CP_COUNT++))
256
done
257
```
258
0 commit comments