{"id":47664824,"url":"https://github.com/hops-ops/aws-secret-stack","last_synced_at":"2026-05-23T04:00:59.010Z","repository":{"id":339462165,"uuid":"1146949402","full_name":"hops-ops/aws-secret-stack","owner":"hops-ops","description":"Crossplane XRD: external-secrets Helm release with AWS Pod Identity for Secrets Manager and SSM Parameter Store access","archived":false,"fork":false,"pushed_at":"2026-03-24T13:38:15.000Z","size":42,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-25T06:38:41.506Z","etag":null,"topics":["aws","crossplane","crossplane-xrd","external-secrets","helm","kubernetes","pod-identity"],"latest_commit_sha":null,"homepage":null,"language":"KCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hops-ops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-01T00:00:24.000Z","updated_at":"2026-03-24T13:15:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hops-ops/aws-secret-stack","commit_stats":null,"previous_names":["hops-ops/helm-aws-external-secrets","hops-ops/aws-secret-stack"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/hops-ops/aws-secret-stack","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-secret-stack","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-secret-stack/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-secret-stack/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-secret-stack/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hops-ops","download_url":"https://codeload.github.com/hops-ops/aws-secret-stack/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hops-ops%2Faws-secret-stack/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31305880,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T09:48:21.550Z","status":"ssl_error","status_checked_at":"2026-04-02T09:48:19.196Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","crossplane","crossplane-xrd","external-secrets","helm","kubernetes","pod-identity"],"created_at":"2026-04-02T11:53:10.100Z","updated_at":"2026-05-23T04:00:59.003Z","avatar_url":"https://github.com/hops-ops.png","language":"KCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# aws-secret-stack\n\nInstalls external-secrets with AWS Pod Identity for Secrets Manager and SSM Parameter Store access. Optionally creates a SecretStore.\n\n## Overview\n\nComposes a `helm.m.crossplane.io/Release` for external-secrets with `aws.hops.ops.com.ai/PodIdentity`.\nAutomatically provisions IAM role and Pod Identity association for external-secrets' service account.\n\nAdditionally:\n- Creates a **SecretStore** (namespaced by default) or **ClusterSecretStore** (opt-in) pointing to AWS Secrets Manager, so ExternalSecrets can pull secrets immediately\n\n## Usage\n\nMinimal — installs ESO, PodIdentity, and SecretStore:\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: SecretStack\nmetadata:\n  name: external-secrets\n  namespace: default\nspec:\n  clusterName: my-cluster\n  aws:\n    region: us-east-1\n```\n\nWith custom values and role prefix:\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: SecretStack\nmetadata:\n  name: external-secrets\n  namespace: default\nspec:\n  clusterName: production-cluster\n  namespace: external-secrets\n  values:\n    serviceAccount:\n      create: true\n  aws:\n    region: us-west-2\n    rolePrefix: prod-\n    tags:\n      environment: production\n```\n\nClusterSecretStore (cluster-wide access):\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: SecretStack\nmetadata:\n  name: external-secrets\n  namespace: default\nspec:\n  clusterName: my-cluster\n  secretStore:\n    scope: Cluster\n  aws:\n    region: us-east-1\n```\n\nESO only — no SecretStore:\n\n```yaml\napiVersion: aws.hops.ops.com.ai/v1alpha1\nkind: SecretStack\nmetadata:\n  name: external-secrets\n  namespace: default\nspec:\n  clusterName: my-cluster\n  secretStore:\n    enabled: false\n  aws:\n    region: us-east-1\n```\n\n## What Gets Created\n\n| Resource | Condition | Description |\n|----------|-----------|-------------|\n| `helm.m.crossplane.io/Release` | Always | external-secrets Helm release (chart v2.2.0) |\n| `aws.hops.ops.com.ai/PodIdentity` | Always | IAM role + Pod Identity with Secrets Manager, SSM, and KMS permissions |\n| `kubernetes.m.crossplane.io/Object` (SecretStore) | `secretStore.enabled` (default true) | ClusterSecretStore or SecretStore wired to AWS Secrets Manager via PodIdentity JWT auth |\n\n## SecretStore Options\n\n| Field | Default | Description |\n|-------|---------|-------------|\n| `secretStore.enabled` | `true` | Create a SecretStore resource |\n| `secretStore.scope` | `Namespaced` | `Namespaced` for SecretStore, `Cluster` for ClusterSecretStore |\n| `secretStore.name` | `default` | Name of the SecretStore resource |\n\n## Status\n\n| Field | Description |\n|-------|-------------|\n| `ready` | Overall stack readiness |\n\n## Development\n\n```bash\nmake render      # render all examples\nmake validate    # validate rendered output\nmake test        # run KCL unit tests\nmake e2e         # run E2E tests (requires AWS credentials)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Faws-secret-stack","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhops-ops%2Faws-secret-stack","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhops-ops%2Faws-secret-stack/lists"}