Skip to content

Commit af5ce3c

Browse files
Fix minor typos in AWS BYOVPC documentation (#232)
Some of these fields should be surrounded by quotes, as in the below create cluster example as well. Removed an extra trailing comma that is invalid.
1 parent c415121 commit af5ce3c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/get-started/pages/cluster-types/byoc/aws/vpc-byo-aws.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -128,23 +128,23 @@ To create the Redpanda network:
128128
cat > redpanda-network.json <<EOF
129129
{
130130
"name":"sample-redpanda-network",
131-
"resource_group_id": ${REDPANDA_RG_ID},
131+
"resource_group_id": "${REDPANDA_RG_ID}",
132132
"cloud_provider":"CLOUD_PROVIDER_AWS",
133-
"region": ${AWS_REGION},
133+
"region": "${AWS_REGION}",
134134
"cluster_type":"TYPE_BYOC",
135135
"customer_managed_resources": {
136136
"aws": {
137137
"management_bucket": {
138-
"arn": ${AWS_MANAGEMENT_BUCKET}
138+
"arn": "${AWS_MANAGEMENT_BUCKET}"
139139
},
140140
"dynamodb_table": {
141-
"arn": ${AWS_DYNAMODB_TABLE}
141+
"arn": "${AWS_DYNAMODB_TABLE}"
142142
},
143143
"private_subnets": {
144-
"arns": ${AWS_PRIVATE_SUBNETS}
144+
"arns": "${AWS_PRIVATE_SUBNETS}"
145145
},
146146
"vpc": {
147-
"arn": ${AWS_VPC}
147+
"arn": "${AWS_VPC}"
148148
}
149149
}
150150
}
@@ -253,7 +253,7 @@ cat > redpanda-cluster.json <<EOF
253253
"arn": "<permissions_boundary_policy_arn from terraform outputs>"
254254
}
255255
}
256-
},
256+
}
257257
}
258258
EOF
259259
```

0 commit comments

Comments
 (0)