{"id":22653895,"url":"https://github.com/gslabdev/terraform-provider-bigfix","last_synced_at":"2026-04-27T23:36:07.705Z","repository":{"id":96137656,"uuid":"231528341","full_name":"GSLabDev/terraform-provider-bigfix","owner":"GSLabDev","description":"Automates the BigFix execute multi action resource on VM, along with list computer and list fixlet datasources using Terraform Provider.","archived":false,"fork":false,"pushed_at":"2020-06-10T09:15:50.000Z","size":22,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-06T11:02:28.289Z","etag":null,"topics":["bigfix","iem","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GSLabDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2020-01-03T06:39:41.000Z","updated_at":"2022-02-09T07:19:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"c6b32223-897e-4ee9-ab4d-0a1a863946aa","html_url":"https://github.com/GSLabDev/terraform-provider-bigfix","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GSLabDev/terraform-provider-bigfix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-bigfix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-bigfix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-bigfix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-bigfix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GSLabDev","download_url":"https://codeload.github.com/GSLabDev/terraform-provider-bigfix/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-bigfix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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":["bigfix","iem","terraform","terraform-provider"],"created_at":"2024-12-09T09:30:26.864Z","updated_at":"2026-04-27T23:36:07.690Z","avatar_url":"https://github.com/GSLabDev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform BigFix Provider\n\nThis is the repository for the Terraform bigfix Provider, which one can use\nwith Terraform to work with [bigfix][1].\n\nCoverage is currently limited to a one resource only ie. Multiple action group and two data sources called Computer and Fixlet  \n\n[1]: https://www.hcltechsw.com/products/bigfix\n\nFor general information about Terraform, visit the [official website][3] and the\n[GitHub project page][4].\n\n[3]: https://terraform.io/\n[4]: https://github.com/hashicorp/terraform\n\n# Using the Provider\n\nThe current version of this provider requires Terraform v0.12 or higher to\nrun.\n\nNote that you need to run `terraform init` to fetch the provider before\ndeploying. Read about the provider split and other changes to TF v0.12 in the\nofficial document found [here][5].\n\n[5]: https://www.terraform.io/docs/extend/terraform-0.12-compatibility.html\n\n## Full Provider Documentation\n\nThe provider is useful for creating [multiple action group][12] in bigfix for particular target computer.\n\nAdditionally you can mention custom attributes for multiple action group using xml file along with terraform configuration file.\n\n[12]: https://help.hcltechsw.com/bigfix/9.5/platform/Platform/Console/c_take_multiple_actions.html\n\n### Example\n\nCheckout complete example [here](/Examples)\n\n```hcl\n# Configure the Bigfix Provider\nprovider \"bigfix\" {\n  port = var.bigfix_port\n  username = var.bigfix_username\n  password = var.bigfix_password\n  server = var.bigfix_server\n}\n\n# data source bigfix fixlet\ndata \"bigfix_fixlet\" \"myfixlet\"{\n  name = var.fixlet_name\n}\n\n###########################################\n# example: patch a linux machine\n###########################################\n\n# data source bigfix computer\ndata  \"bigfix_computer\" \"linux_vm\"{\n  name = var.linux-vm-name\n}\n\n# resource bigfix multiple_action_group\nresource \"bigfix_multiple_action_group\" \"test\" {\n  # path of xml file containing custom attributes\n  input_file_name = \"MAG.xml\"\n  target_computer_id = data.bigfix_computer.linux_vm.id\n  site_name = var.linux-sites\n}\n\noutput \"MAG-linux-vm\" {\n  value = bigfix_multiple_action_group.test.title\n}\n\noutput \"action-state-linux\" {\n  value = bigfix_multiple_action_group.test.state\n}\n```\n\n# Building The Provider\n\n**NOTE:** Unless you are [developing][6] or require a pre-release bugfix or feature,\nyou will want to use the officially released version of the provider (see [the\nsection above][7]).\n\n[6]: #developing-the-provider\n[7]: #using-the-provider\n\n## Cloning the Project\n\nFirst, you will want to clone the repository to\n`$GOPATH/src/github.com/terraform-providers/terraform-provider-bigfix`:\n\n```sh\nmkdir -p $GOPATH/src/github.com/terraform-providers\ncd $GOPATH/src/github.com/terraform-providers\ngit clone git@github.com:terraform-providers/terraform-provider-bigfix\n```\n\n## Running the Build\n\nAfter the clone has been completed, you can enter the provider directory and\nbuild the provider.\n\n```sh\ncd $GOPATH/src/github.com/terraform-providers/terraform-provider-bigfix\nmake build\n```\n\n## Installing the Local Plugin\n\nAfter the build is complete, copy the `terraform-provider-bigfix` binary into\nthe same path as your `terraform` binary, and re-run `terraform init`.\n\nAfter this, your project-local `.terraform/plugins/ARCH/lock.json` (where `ARCH`\nmatches the architecture of your machine) file should contain a SHA256 sum that\nmatches the local plugin. Run `shasum -a 256` on the binary to verify the values\nmatch.\n\n# Developing the Provider\n\nIf you wish to work on the provider, you'll first need [Go][8] installed on your\nmachine (version 1.13.1+ is **required**). You'll also need to correctly setup a\n[GOPATH][9], as well as adding `$GOPATH/bin` to your `$PATH`.\n\n[8]: https://golang.org/\n[9]: http://golang.org/doc/code.html#GOPATH\n\nSee [Building the Provider][10] for details on building the provider.\n\n[10]: #building-the-provider\n\n\n## Checking the Logs\nTo persist logged output you can set TF_LOG_PATH in order to force the log to always be appended to a specific file when logging is enabled. Note that even when TF_LOG_PATH is set, TF_LOG must be set in order for any logging to be enabled.\n\nTo check logs use the following commands :\n```sh\n# Specify Log Level\nexport TF_LOG=DEBUG\n# Specify Log File Path\nexport TF_LOG_PATH='. . .'\n```\n\n## Configuring Environment Variables\n\nMost of the tests in this provider require a comprehensive list of environment\nvariables to run. See the individual `*_test.go` files in the\n[`bigfix/`](bigfix/) directory for more details. The next section also\ndescribes how you can manage a configuration file of the test environment\nvariables.\n\n## Running the Acceptance Tests\nIn order to perform acceptance tests of bigfix, first set in your environment variables required for the connection (`BFX_SERVER`, `BFX_PORT`, `BFX_USERNAME`, `BFX_PASSWORD`, `BFX_COMPUTER`, `BFX_INPUT_FILE_NAME`, `BFX_FIXLET`).\n\nFor `BFX_INPUT_FILE_NAME`, give complete path of file.\n\nAfter this is done, you can run the acceptance tests by running:\n\n```sh\n$ make testacc\n```\n\n\n# Building The Provider\n\n**NOTE:** Unless you are [developing][7] or require a pre-release bugfix or feature,\nyou will want to use the officially released version of the provider (see [the\nsection above][8]).\n\n[7]: #developing-the-provider\n[8]: #using-the-provider\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgslabdev%2Fterraform-provider-bigfix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgslabdev%2Fterraform-provider-bigfix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgslabdev%2Fterraform-provider-bigfix/lists"}