Skip to content

Commit 1f5ca9b

Browse files
authored
Fix grammar, formatting, and a command on EKS add-on page (#44385)
Signed-off-by: David Xia <[email protected]>
1 parent 6d17d29 commit 1f5ca9b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

website/docs/r/eks_addon.html.markdown

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,14 @@ Custom add-on configuration can be passed using `configuration_values` as a sing
3838

3939
~> **Note:** `configuration_values` is a single JSON string should match the valid JSON schema for each add-on with specific version.
4040

41-
To find the correct JSON schema for each add-on can be extracted using [describe-addon-configuration](https://docs.aws.amazon.com/cli/latest/reference/eks/describe-addon-configuration.html) call.
42-
This below is an example for extracting the `configuration_values` schema for `coredns`.
41+
You can use [describe-addon-configuration](https://docs.aws.amazon.com/cli/latest/reference/eks/describe-addon-configuration.html) to extract each add-on's JSON schema.
42+
Here's an example command to extract the `configuration_values` schema for `coredns`.
4343

4444
```bash
45-
aws eks describe-addon-configuration \
46-
--addon-name coredns \
47-
--addon-version v1.10.1-eksbuild.1
45+
aws eks describe-addon-configuration \
46+
--addon-name coredns \
47+
--addon-version v1.10.1-eksbuild.1 \
48+
| jq -r .configurationSchema | jq .
4849
```
4950

5051
Example to create a `coredns` managed addon with custom `configuration_values`.

0 commit comments

Comments
 (0)