addon_configurations
Creates, updates, deletes, gets or lists an addon_configurations resource.
Overview
| Name | addon_configurations |
| Type | Resource |
| Id | aws.eks.addon_configurations |
Fields
The following fields are returned by SELECT queries:
- describe_addon_configuration
| Name | Datatype | Description |
|---|---|---|
addon_name | string | The name of the add-on. |
addon_version | string | The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions . |
configuration_schema | string | A JSON schema that's used to validate the configuration values you provide when an add-on is created or updated. |
pod_identity_configuration | array | The Kubernetes service account name used by the add-on, and any suggested IAM policies. Use this information to create an IAM Role for the add-on. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_addon_configuration | select | addonName, addonVersion, region | Returns configuration options. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
addonName | string | The name of the add-on. The name must match one of the names returned by DescribeAddonVersions. |
addonVersion | string | The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions . |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_addon_configuration
Returns configuration options.
SELECT
addon_name,
addon_version,
configuration_schema,
pod_identity_configuration
FROM aws.eks.addon_configurations
WHERE addonName = '{{ addonName }}' -- required
AND addonVersion = '{{ addonVersion }}' -- required
AND region = '{{ region }}' -- required
;