{"id":24638013,"url":"https://github.com/upbound/provider-datadog","last_synced_at":"2025-10-08T11:11:37.342Z","repository":{"id":226079861,"uuid":"751105459","full_name":"upbound/provider-datadog","owner":"upbound","description":"Provider To Configure Datadog","archived":false,"fork":false,"pushed_at":"2025-09-01T13:51:59.000Z","size":1043,"stargazers_count":7,"open_issues_count":18,"forks_count":5,"subscribers_count":10,"default_branch":"main","last_synced_at":"2025-09-01T15:29:45.967Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/upbound.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":null,"cla":null}},"created_at":"2024-01-31T23:52:00.000Z","updated_at":"2025-05-12T11:16:20.000Z","dependencies_parsed_at":"2024-07-24T10:17:49.752Z","dependency_job_id":"a04a6351-9a95-44c8-b658-a7e8c9fe15d3","html_url":"https://github.com/upbound/provider-datadog","commit_stats":null,"previous_names":["upbound/provider-datadog"],"tags_count":3,"template":false,"template_full_name":"crossplane/upjet-provider-template","purl":"pkg:github/upbound/provider-datadog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fprovider-datadog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fprovider-datadog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fprovider-datadog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fprovider-datadog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/upbound","download_url":"https://codeload.github.com/upbound/provider-datadog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fprovider-datadog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278931654,"owners_count":26070789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-01-25T10:12:46.522Z","updated_at":"2025-10-08T11:11:37.280Z","avatar_url":"https://github.com/upbound.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Provider Datadog\n\n`provider-datadog` is a [Crossplane](https://crossplane.io/) provider that\nis built using [Upjet](https://github.com/crossplane/upjet) code\ngeneration tools and exposes XRM-conformant managed resources for the\nDatadog API.\n\n## Prerequisites\n\nThis provider interacts with a\n[Datadog account](https://www.datadoghq.com/). It authenticates\nto the account using a Datadog API Key, an Application key, and\na Datadog account endpoint URL.\nThe keys can be generated inside the account\nand be stored in a Kubernetes secret on the Crossplane\nmanagement cluster. The format of the secret is as follows:\n```\n    {\n      \"api_key\": \"INSERT_API_KEY\",\n      \"app_key\": \"INSERT_APP_KEY\",\n      \"api_url\": \"https://api.datadoghq.com/\"\n    }\n```\nNote that your preferred endpoint may differ.\nThe Kubernertes secret can be referenced by\nthe ProviderConfig, so that the provider-datadog can connect\nto the desired Datadog account. A ProviderConfig may look\nas follows:\n```\napiVersion: datadog.upbound.io/v1beta1\nkind: ProviderConfig\nmetadata:\n  name: default\nspec:\n  credentials:\n    source: Secret\n    secretRef:\n      name: datadog-creds\n      namespace: upbound-system\n      key: credentials\n```\n\nTo run local tests, create a datadog-secret file per above.\nThen create an `UPTEST_CLOUD_CREDENTIALS` environment variable\nas follows\n```\nexport UPTEST_CLOUD_CREDENTIALS=$(cat \u003cPATH-TO-DATADOG-SECRET-FILE\u003e )\n```\nOnce complete, specify the tests that you would like to run\nin the `UPTEST_EXAMPLE_LIST` environment variable. An example\nis as follows:\n```\nexport UPTEST_EXAMPLE_LIST=\"./examples/datadog/dashboardjson.yaml\"\n```\nNote that you may specify multiple comma separated tests.\nNow run `UPTEST_EXAMPLE_LIST=\"./examples/datadog/v1alpha1/dashboardjson.yaml\" make e2e`. This will create a local kind cluster,\ninstall Crossplane and the provider-datadog from a local build\nand run Uptests managed resources apply, update, import, delete\ntests.\n\n## Getting Started\n\nInstall the provider by using the following command after changing the image tag\nto the [latest release](https://marketplace.upbound.io/providers/upbound/provider-datadog):\n```\nup ctp provider install upbound/provider-datadog:v0.1.0\n```\n\nAlternatively, you can use declarative installation:\n```\ncat \u003c\u003cEOF | kubectl apply -f -\napiVersion: pkg.crossplane.io/v1\nkind: Provider\nmetadata:\n  name: provider-datadog\nspec:\n  package: upbound/provider-datadog:v0.1.0\nEOF\n```\n\nYou can see the API reference [here](https://doc.crds.dev/github.com/upbound/provider-datadog).\n\n## Developing\n\nRun code-generation pipeline:\n\n```console\nmake clean; make generate\n```\n\nRun against a Kubernetes cluster:\n\n```console\nmake run\n```\n\nBuild, push, and install:\n\n```console\nmake all\n```\n\nBuild binary:\n\n```console\nmake build\n```\n\n## Report a Bug\n\nFor filing bugs, suggesting improvements, or requesting new features, please\nopen an [issue](https://github.com/upbound/provider-datadog/issues).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fprovider-datadog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fupbound%2Fprovider-datadog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fprovider-datadog/lists"}