{"id":21359351,"url":"https://github.com/trendmicro/terraform-provider-conformity","last_synced_at":"2025-08-31T20:43:47.966Z","repository":{"id":37395650,"uuid":"378840761","full_name":"trendmicro/terraform-provider-conformity","owner":"trendmicro","description":"Conformity Terraform provider","archived":false,"fork":false,"pushed_at":"2024-07-24T15:45:55.000Z","size":10814,"stargazers_count":11,"open_issues_count":13,"forks_count":12,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-07T03:22:47.818Z","etag":null,"topics":["conformity","terraform"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/providers/trendmicro/conformity/latest/docs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trendmicro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2021-06-21T07:16:16.000Z","updated_at":"2025-01-27T07:18:28.000Z","dependencies_parsed_at":"2024-01-17T23:01:19.307Z","dependency_job_id":"d326a21e-c318-4376-b8aa-61acfe0281af","html_url":"https://github.com/trendmicro/terraform-provider-conformity","commit_stats":{"total_commits":108,"total_committers":17,"mean_commits":6.352941176470588,"dds":0.5925925925925926,"last_synced_commit":"bca02acabe354bb5875ea02ba2c0c6a8ef1c3371"},"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/trendmicro/terraform-provider-conformity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-conformity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-conformity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-conformity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-conformity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trendmicro","download_url":"https://codeload.github.com/trendmicro/terraform-provider-conformity/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-conformity/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259621274,"owners_count":22885916,"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","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":["conformity","terraform"],"created_at":"2024-11-22T05:27:53.466Z","updated_at":"2025-08-31T20:43:47.960Z","avatar_url":"https://github.com/trendmicro.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Conformity Terraform Provider\n\n## How to set up local machine:\n\n#### 1. Navigate to project directory:\n```sh\ncd /path/terraform-provider-conformity\n```\n#### 2. Install dependencies:\n```sh\ngo mod tidy\ngo mod vendor\n```\n#### 3. Update Makefile with your own values:\n```makefile\n# ...\nVERSION=0.6 # Set a new version\nOS_ARCH=darwin_amd64 # Update to value that matches with your OS\n# ...\n```\n#### 4. Create the Artifact:\n```sh\nmake install\n```\n#### 5. Go to your terraform project, and update `source` set in your terraform provider block:\n```hcl\nterraform {\n  required_providers {\n    conformity = {\n      version = \"YOUR_VERSION\"\n\n      # Set path to match with values in HOSTNAME/NAMESPACE/NAME defined in the Makefile\n      source  = \"trendmicro.com/cloudone/conformity\" \n    }\n  }\n}\n```\n#### 6. Now, you can test terraform code:\n```sh\ncd example/path-to-main/\nterraform init\nterraform apply\n```\nNotes:\u003cbr\u003e \n* for your own config, create a file name `terraform.tfvars`\n* add the following:\n```sh\nregion  = \"region\"\napikey  = \"apikey\"\n```\n\n\n Turn on debug:\n```sh\nexport TF_LOG_CORE=TRACE\nexport TF_LOG_PROVIDER=TRACE\n```\n\n* when you are testing, you can set environment variable `CONFORMITY_API_URL` to match your testing API url; otherwise it will use default official API url.\n\n## How to protect API keys\n\n#### 1. with file\n\nCreate a file name `terraform.tfvars` and add all necessary variables here\n\nEnsure `terraform.tfvars` is included in `.gitignore` so these secrets are not accidentally pushed to a remote git repository.\n\n#### 2. with environment variables\n\nTerraform provides a way of reading variables from the environment: https://www.terraform.io/docs/cli/config/environment-variables.html#tf_var_name\n\n\n## Updating documentation\nUse the [Doc Preview Tool](https://registry.terraform.io/tools/doc-preview) to understand how the markdown will look once released. The [Provider Documentation](https://developer.hashicorp.com/terraform/registry/providers/docs) can also provide further guidance.\n\n## How to release\n### Steps\n#### 1. Go to terraform provider GitHub: https://github.com/trendmicro/terraform-provider-conformity/releases\n\n#### 2. Click \"Draft a new release\" button\n\n#### 3. Click \"Choose a Tag\" dropdown, provide tag with value “xxx”, then select \"+ Create new Tag : xxx on publish\" popup item below.\n\n#### 4. Choose the main branch as \"Target\"\n\n#### 5. Fill the release title “xxx”\n\n#### 6. Add the released changes to the description. *Do avoid Jira Ticket's IDs as those are not publicly visible.*\n\n#### 7. Click \"Publish release\" button at the bottom.\n\n### Check the release\nAfter releasing, a webhook will be sent to Terraform registry automatically.\nWithin about 10 minutes https://registry.terraform.io/providers/trendmicro/conformity/latest/docs  should be updated with the new release from Github.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendmicro%2Fterraform-provider-conformity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrendmicro%2Fterraform-provider-conformity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendmicro%2Fterraform-provider-conformity/lists"}