{"id":22653891,"url":"https://github.com/gslabdev/terraform-provider-cloudforms","last_synced_at":"2026-05-18T00:02:59.784Z","repository":{"id":96137655,"uuid":"226836441","full_name":"GSLabDev/terraform-provider-cloudforms","owner":"GSLabDev","description":"Automates the Cloudforms Service Execution resource during Infrastructure build using Terraform Provider.","archived":false,"fork":false,"pushed_at":"2019-12-18T06:23:39.000Z","size":60,"stargazers_count":0,"open_issues_count":0,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-05T15:39:07.249Z","etag":null,"topics":["cloudforms","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":"2019-12-09T09:42:42.000Z","updated_at":"2022-02-09T07:20:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"17fe43c5-c585-4dcb-a125-1324b966fb5d","html_url":"https://github.com/GSLabDev/terraform-provider-cloudforms","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/GSLabDev/terraform-provider-cloudforms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-cloudforms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-cloudforms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-cloudforms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-cloudforms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GSLabDev","download_url":"https://codeload.github.com/GSLabDev/terraform-provider-cloudforms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GSLabDev%2Fterraform-provider-cloudforms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33160167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"ssl_error","status_checked_at":"2026-05-17T22:39:10.741Z","response_time":107,"last_error":"SSL_read: 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":["cloudforms","terraform","terraform-provider"],"created_at":"2024-12-09T09:30:25.121Z","updated_at":"2026-05-18T00:02:54.777Z","avatar_url":"https://github.com/GSLabDev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Cloudform Provider\n\nThis is the repository for the Terraform Cloudform Provider, which one can use\nwith Terraform to work with Cloudform.\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\n# Using the Provider\n\nThe current version of this provider requires Terraform v0.12.9 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.10.0 in the\nofficial release announcement found [here][5].\n\n[5]: https://www.hashicorp.com/blog/hashicorp-terraform-0-10/\n\n\n## Full Provider Documentation\n\nThe provider is useful for Ordering services from Service catalog.\n\n### Example\n```hcl\n\n# Configure the Cloudform Provider\nprovider \"cloudforms\" {\n\tip = \"${var.CF_SERVER_IP}\"\n\tuser_name = \"${var.CF_USER_NAME}\"\n\tpassword = \"${var.CF_PASSWORD}\"\n}\n\n# Data Source cloudforms_service\ndata  \"cloudforms_service\" \"myservice\"{\n    name = \"${var.SERVICE_NAME}\"\n}\n\n# Data Source cloudforms_service_template\ndata \"cloudforms_service_template\" \"mytemplate\"{\n\tname = \"${var.SERVICE_TEMPLATE_NAME}\"\n}\n\n\n# Resource cloudforms_service_request\nresource \"cloudforms_service_request\" \"test\" {\t\n\tname = \"${var.TEMPLATE_NAME}\"\n\ttemplate_href = \"${data.cloudforms_service_template.mytemplate.href}\"\n\tcatalog_id =\"${data.cloudforms_service_template.mytemplate.service_template_catalog_id}\"\n\tinput_file_name = \"${var.INPUT_FILE_NAME}\"\n\ttime_out= 50\n}\t\n\noutput \"Service_templates_href\"{\n\tvalue = \"${data.cloudforms_service_template.mytemplate.href}\"\n}\n\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\n## Cloning the Project\n\nFirst, you will want to clone the repository to\n`$GOPATH/src/github.com/terraform-providers/terraform-provider-cloudforms`:\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-cloudforms\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-cloudforms\nmake build\n```\n\n## Installing the Local Plugin\n\nAfter the build is complete, copy the `terraform-provider-cloudforms` 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[`cloudforms/`](cloudforms/) 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 cloudforms, first set in your environment variables required for the connection (`CF_SERVER_IP`,`CF_USER_NAME`,`CF_PASSWORD`,`CF_SERVICE_NAME`,`CF_INPUT_FILE_NAME`,`CF_TEMPLATE_NAME`).\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-cloudforms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgslabdev%2Fterraform-provider-cloudforms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgslabdev%2Fterraform-provider-cloudforms/lists"}