{"id":46006513,"url":"https://github.com/valkiriaaquatica/provider-stripe","last_synced_at":"2026-02-28T23:10:37.226Z","repository":{"id":329202773,"uuid":"1117870895","full_name":"valkiriaaquatica/provider-stripe","owner":"valkiriaaquatica","description":"Crosspane provider to interact with Stripe","archived":false,"fork":false,"pushed_at":"2026-02-23T21:52:47.000Z","size":310,"stargazers_count":0,"open_issues_count":7,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-24T00:44:48.720Z","etag":null,"topics":["crossplane","gitops","kubernetes","stripe","terraform"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/valkiriaaquatica.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","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":"DCO","cla":null}},"created_at":"2025-12-16T23:58:52.000Z","updated_at":"2026-02-06T15:39:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/valkiriaaquatica/provider-stripe","commit_stats":null,"previous_names":["valkiriaaquatica/provider-stripe"],"tags_count":1,"template":false,"template_full_name":"crossplane/upjet-provider-template","purl":"pkg:github/valkiriaaquatica/provider-stripe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valkiriaaquatica%2Fprovider-stripe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valkiriaaquatica%2Fprovider-stripe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valkiriaaquatica%2Fprovider-stripe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valkiriaaquatica%2Fprovider-stripe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/valkiriaaquatica","download_url":"https://codeload.github.com/valkiriaaquatica/provider-stripe/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/valkiriaaquatica%2Fprovider-stripe/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29954583,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T22:53:01.873Z","status":"ssl_error","status_checked_at":"2026-02-28T22:52:50.699Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["crossplane","gitops","kubernetes","stripe","terraform"],"created_at":"2026-02-28T23:10:36.531Z","updated_at":"2026-02-28T23:10:37.211Z","avatar_url":"https://github.com/valkiriaaquatica.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stripe Provider\n\n`provider-stripe` is a [Crossplane](https://crossplane.io/) provider built with [Upjet](https://github.com/crossplane/upjet). It exposes XRM-conformant managed resources for the Stripe API.\n\n## 🚀 Release Automation\n\nThis repository automatically publishes a new release when the upstream Terraform provider releases a new version:\n👉 **Original Terraform Provider:** [lukasaron/terraform-provider-stripe](https://github.com/lukasaron/terraform-provider-stripe)\n\nThe automation pipeline works as follows:\n\n1. **Version Detection** – Handled by our Renovate configuration, which tracks new upstream releases.\n2. **Version Preparation** – When Renovate opens a PR, our GitHub Actions workflow prepares the next version/tag.\n3. **Automated Publishing** – Once the PR is merged, Release Please generates the changelog and publishes the release.\n\nThanks to this pipeline, the provider stays aligned with upstream without manual intervention.\n\n## Installation\n\nMake sure Crossplane is installed in your cluster.\n\n- Using `up` (CLI):\n  ```bash\n  up ctp provider install xpkg.upbound.io/valkiriaaquaticamendi/provider-stripe:v0.1.0\n  ```\n- Declarative:\n  ```bash\n  cat \u003c\u003cEOF | kubectl apply -f -\n  apiVersion: pkg.crossplane.io/v1\n  kind: Provider\n  metadata:\n    name: valkiriaaquaticamendi-provider-stripe\n  spec:\n    package: xpkg.upbound.io/valkiriaaquaticamendi/provider-stripe:v0.1.0\n  EOF\n  ```\n  or\n  ```bash\n  kubectl apply -f examples/install.yaml\n  ```\n\nCreate the secret with your Stripe API key:\n```bash\nvi examples/providerconfig/secret.yaml.tmpl\nkubectl apply -f examples/providerconfig/secret.yaml.tmpl\n```\n\nCreate the ProviderConfig using that secret:\n```bash\nkubectl apply -f examples/providerconfig/providerconfig.yaml\n```\n\nIn `examples/` and `examples-generated/` you will find reference manifests for both cluster-scoped and namespaced resources. The `test/` folder contains quick validation samples (e.g., `coupon`, `file`, `meter`, `portal_configuration`, `product`, `product_feature`, `promotion_code`, `shipping_rate`, `tax_rate`, `webhook_endpoint`, etc.).\n\n## Development\n\n- Generate code:\n  ```bash\n  make generate\n  ```\n- Install CRDs into the cluster:\n  ```bash\n  kubectl apply -f package/crds/\n  ```\n- Run the controller against a cluster with Crossplane:\n  ```bash\n  make run\n  ```\n- Tests:\n  ```bash\n  make test\n  ```\n- Build image:\n  ```bash\n  make build\n  ```\n\n## Report a Bug\n\nFor bugs, improvements, or new feature requests, please open an [issue](https://github.com/valkiriaaquatica/provider-stripe/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalkiriaaquatica%2Fprovider-stripe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvalkiriaaquatica%2Fprovider-stripe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalkiriaaquatica%2Fprovider-stripe/lists"}