Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions latest/ug/capabilities/argocd-create-eksctl.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ Get your Identity Center instance ARN and user ID for RBAC configuration:
# Get your Identity Center instance ARN
aws sso-admin list-instances --query 'Instances[0].InstanceArn' --output text

# Get your Identity Center region
aws sso-admin list-instances --query 'Instances[0].IdentityStoreId' --output text | cut -d'/' -f1

# Get a user ID for admin access (replace 'your-username' with your Identity Center username)
aws identitystore list-users \
--identity-store-id $(aws sso-admin list-instances --query 'Instances[0].IdentityStoreId' --output text) \
Expand All @@ -77,7 +74,7 @@ Note these values - you'll need them in the next step.
== Step 3: Create an eksctl configuration file

Create a file named `argocd-capability.yaml` with the following content.
Replace the placeholder values with your cluster name, region, IAM role ARN, Identity Center instance ARN, Identity Center region, and user ID:
Replace the placeholder values with your cluster's name, cluster's region, IAM role ARN, Identity Center instance ARN, Identity Center region, and user ID:

[source,yaml,subs="verbatim,attributes,quotes"]
----
Expand All @@ -86,12 +83,13 @@ kind: ClusterConfig

metadata:
name: [.replaceable]`my-cluster`
region: [.replaceable]`region-code`
region: [.replaceable]`cluster-region-code`

capabilities:
- name: my-argocd
type: ARGOCD
roleArn: arn:aws:iam::[.replaceable]`111122223333`:role/ArgoCDCapabilityRole
deletePropagationPolicy: RETAIN
configuration:
argocd:
awsIdc:
Expand Down