Skip to main content

addon_configurations

Creates, updates, deletes, gets or lists an addon_configurations resource.

Overview

Nameaddon_configurations
TypeResource
Idaws.eks.addon_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
addon_namestringThe name of the add-on.
addon_versionstringThe version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .
configuration_schemastringA JSON schema that's used to validate the configuration values you provide when an add-on is created or updated.
pod_identity_configurationarrayThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_addon_configurationselectaddonName, addonVersion, regionReturns 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.

NameDatatypeDescription
addonNamestringThe name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
addonVersionstringThe version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .
regionstringAWS region (default: us-east-1)

SELECT examples

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
;