{"id":22837927,"url":"https://github.com/erikvanbrakel/terraform-provider-cloudconformity","last_synced_at":"2025-07-24T22:35:19.573Z","repository":{"id":66948662,"uuid":"138872849","full_name":"erikvanbrakel/terraform-provider-cloudconformity","owner":"erikvanbrakel","description":null,"archived":false,"fork":false,"pushed_at":"2018-07-06T07:49:36.000Z","size":3497,"stargazers_count":5,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-12T20:02:30.728Z","etag":null,"topics":["cloudconformity","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/erikvanbrakel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2018-06-27T11:33:13.000Z","updated_at":"2023-05-05T09:05:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"f34c8a42-9dda-41ec-a176-dbe9fa3afc78","html_url":"https://github.com/erikvanbrakel/terraform-provider-cloudconformity","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/erikvanbrakel/terraform-provider-cloudconformity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikvanbrakel%2Fterraform-provider-cloudconformity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikvanbrakel%2Fterraform-provider-cloudconformity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikvanbrakel%2Fterraform-provider-cloudconformity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikvanbrakel%2Fterraform-provider-cloudconformity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erikvanbrakel","download_url":"https://codeload.github.com/erikvanbrakel/terraform-provider-cloudconformity/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erikvanbrakel%2Fterraform-provider-cloudconformity/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266913747,"owners_count":24005582,"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-07-24T02:00:09.469Z","response_time":99,"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":["cloudconformity","terraform","terraform-provider"],"created_at":"2024-12-12T23:20:49.166Z","updated_at":"2025-07-24T22:35:19.508Z","avatar_url":"https://github.com/erikvanbrakel.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-cloudconformity\r\n\r\nTerraform provider for https://www.cloudconformity.com\r\n\r\n## Building the provider\r\nIn this section you will learn how to build and tun `terraform-provider-cloudconformity` locally. Please follow the\r\nsteps below:\r\n\r\nRequirements\r\n---------------------\r\n\r\n - [Terraform] 0.10.x\r\n - [Go] 1.9 (to build the provider plugin)\r\n - [Cloud Conformity] Must have an account to be able to get an API key\r\n\r\n\r\nSetting up your environment\r\n---------------------\r\n\r\nCreate the environment variables below:\r\n\r\n`$GOROOT=$HOME/go`\r\n\r\n`$GOPATH=$GOROOT/bin`\r\n\r\nThe `GOPATH` can be set wherever you want but please read this [topic][0] to understand how they work.\r\n\r\nClone repository to: `$GOPATH/src/github.com/erikvanbrakel/terraform-provider-cloudconformity`\r\n\r\n\r\n## Installation\r\nDownload the binary for your platform and architecture from the [releases page]. Unpack the zip, and place the\r\n`terraform-provider-cloudconformity` binary in the same directory as the `terraform` binary or add a `.terraformrc` with\r\nthe provider stanza:\r\n\r\n```hcl\r\nproviders {\r\n    cloudconformity = \"/PATH/TO/MODULE/ARCH/terraform-provider-cloudconformity\"\r\n}\r\n```\r\n\r\n\r\n## Usage\r\n\r\n```hcl\r\ndata \"cloudconformity_external_id\" \"exid\" {}\r\n\r\nresource \"aws_cloudformation_stack\" \"cloud-conformity\" {\r\n\r\n  name         = \"CloudConformity\"\r\n\r\n  template_url = \"https://s3-us-west-2.amazonaws.com/cloudconformity/CloudConformity.template\"\r\n\r\n  parameters {\r\n    AccountId  = \"717210094962\"\r\n    ExternalId = \"${data.cloudconformity_external_id.exid.id}\"\r\n  }\r\n\r\n  capabilities = [\"CAPABILITY_NAMED_IAM\"]\r\n\r\n}\r\n\r\nresource \"cloudconformity_account\" \"account\" {\r\n  name        = \"My Account\"\r\n  environment = \"My Environment\"\r\n\r\n  external_id = \"${data.cloudconformity_external_id.exid.id}\"\r\n  role_arn    = \"${aws_cloudformation_stack.cloud-conformity.outputs[\"CloudConformityRoleArn\"]}\"\r\n}\r\n```\r\n\r\nFor more information, please see the [documentation].\r\n\r\n[Terraform]: https://www.terraform.io/downloads.html\r\n[Go]: https://golang.org/doc/install\r\n[Cloud Conformity]: https://www.cloudconformity.com\r\n[releases page]: https://github.com/erikvanbrakel/terraform-provider-cloudconformity/releases\r\n[documentation]: docs/README.md\r\n[0]: https://stackoverflow.com/questions/7970390/what-should-be-the-values-of-gopath-and-goroot","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikvanbrakel%2Fterraform-provider-cloudconformity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferikvanbrakel%2Fterraform-provider-cloudconformity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferikvanbrakel%2Fterraform-provider-cloudconformity/lists"}