{"id":21359335,"url":"https://github.com/trendmicro/terraform-provider-vision-one","last_synced_at":"2026-07-02T21:01:02.775Z","repository":{"id":246168149,"uuid":"820208925","full_name":"trendmicro/terraform-provider-vision-one","owner":"trendmicro","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-08T16:01:09.000Z","size":609,"stargazers_count":9,"open_issues_count":5,"forks_count":11,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-05-08T17:41:41.571Z","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":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trendmicro.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-06-26T02:56:05.000Z","updated_at":"2026-05-08T15:59:42.000Z","dependencies_parsed_at":"2026-03-13T03:01:10.609Z","dependency_job_id":null,"html_url":"https://github.com/trendmicro/terraform-provider-vision-one","commit_stats":null,"previous_names":["trendmicro/terraform-provider-vision-one"],"tags_count":61,"template":false,"template_full_name":null,"purl":"pkg:github/trendmicro/terraform-provider-vision-one","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-vision-one","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-vision-one/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-vision-one/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-vision-one/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trendmicro","download_url":"https://codeload.github.com/trendmicro/terraform-provider-vision-one/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trendmicro%2Fterraform-provider-vision-one/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32869721,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"ssl_error","status_checked_at":"2026-05-10T13:40:02.145Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-11-22T05:27:50.389Z","updated_at":"2026-05-10T19:59:29.868Z","avatar_url":"https://github.com/trendmicro.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Trend Micro Vision One Terraform Provider\n\nFramework: https://developer.hashicorp.com/terraform/plugin/framework\n\nOur Terraform Provider: https://registry.terraform.io/providers/trendmicro/vision-one/latest\n\n## Local Development Setup\n\n### For Mac User\n\n### 1. check if you have .terraformrc file\nVerify with\n\n```shell\ncat ~/.terraformrc\n```\n\nIf shows nothing you can create .terraformrc file under your home directory(~)\n\n### 2. Setup GOBIN path\n   Verify with\n\n```shell\ngo env GOBIN\n```\n\nMake sure you have the path ready.\nIf shows nothing you can setup GOBIN with default /Users/YOUR_USERNAME/go/bin\n\n```shell\nexport GOBIN=/Users/{YOUR_USERNAME}/go/bin\n```\n\n### 3. Overrides local provider\nCheck your provider installation setting in ~/.terraformrc\n\n```shell\ncat ~/.terraformrc\n```\n\n```shell\nprovider_installation {\n\n  dev_overrides {\n      \"trendmicro/vision-one\" = \"\u003cFILL_IN_WITH_$GOBIN_PATH\u003e\"\n\n  }\n\n  # For all other providers, install them directly from their origin provider\n  # registries as normal. If you omit this, Terraform will _only_ use\n  # the dev_overrides block, and so no other providers will be available.\n  direct {}\n}\n```\n\n### 4. Compile Provider Code\nIn your terminal, go to terraform provider root folder to install go binary file\n\n```shell\ngo install .\n```\n\nThe binary executive file will store at your $GOBIN\n\n### 5. Verify with Terraform\nEither find sample code under example folder or make your own\n\n```terraform\nterraform {\n  required_providers {\n    visionone = {\n      source = \"trendmicro/vision-one\"\n    }\n  }\n}\n\nprovider \"visionone\" {\n  api_key         = \"xxx\"\n  regional_fqdn   = \"xxx\"\n}\n\nresource \"visionone_container_cluster\" \"this\" {\n  name = \"example\"\n\n}\n```\n\n## Use Example\n\n### 1. Navigate to example folder. Use ruleset for example.\n\n```\ncd examples/resources/visionone_container_ruleset\n```\n\n### 2. Copy provider settings.\n\nCopy the provider settings from `examples/provider/provider.tf`, fill in your API key and regional fully qualified domain name (FQDN), then paste in `examples/resources/visionone_container_ruleset/resource.tf`.\n\nFor the API key, add in the Vision One console.\n\nFor the regional FQDN, refer to the [Regional domains table](https://automation.trendmicro.com/xdr/Guides/Regional-domains).\n\n### 3. Good to go!\n\nUse the terraform command to fetch the latest terraform provider and build your resource.\n```\nterraform init\nterraform apply\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendmicro%2Fterraform-provider-vision-one","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrendmicro%2Fterraform-provider-vision-one","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrendmicro%2Fterraform-provider-vision-one/lists"}