{"id":42479117,"url":"https://github.com/ewilde/terraform-provider-openfaas","last_synced_at":"2026-01-28T10:38:16.631Z","repository":{"id":57531246,"uuid":"147004191","full_name":"ewilde/terraform-provider-openfaas","owner":"ewilde","description":"Terraform OpenFaaS provider ","archived":false,"fork":false,"pushed_at":"2020-06-04T15:27:50.000Z","size":30908,"stargazers_count":47,"open_issues_count":1,"forks_count":8,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-06-20T15:57:31.434Z","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/ewilde.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}},"created_at":"2018-09-01T14:15:56.000Z","updated_at":"2023-06-15T18:28:53.000Z","dependencies_parsed_at":"2022-09-05T10:01:28.517Z","dependency_job_id":null,"html_url":"https://github.com/ewilde/terraform-provider-openfaas","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ewilde/terraform-provider-openfaas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ewilde%2Fterraform-provider-openfaas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ewilde%2Fterraform-provider-openfaas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ewilde%2Fterraform-provider-openfaas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ewilde%2Fterraform-provider-openfaas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ewilde","download_url":"https://codeload.github.com/ewilde/terraform-provider-openfaas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ewilde%2Fterraform-provider-openfaas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28844014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T07:39:25.367Z","status":"ssl_error","status_checked_at":"2026-01-28T07:39:24.487Z","response_time":57,"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":"2026-01-28T10:38:16.559Z","updated_at":"2026-01-28T10:38:16.620Z","avatar_url":"https://github.com/ewilde.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform provider for OpenFaaS\n\n[![Build Status](https://travis-ci.org/ewilde/terraform-provider-openfaas.svg?branch=master)](https://travis-ci.org/ewilde/terraform-provider-openfaas)\n\nThe terraform provider for [OpenFaaS](https://www.openfaas.com/)\n\n## Documentation\n\nFull documentation, see: https://openfaas-tfe.edwardwilde.com/docs/providers/openfaas\n\n### Example Usage\n\n```hcl\nresource \"openfaas_function\" \"function_test\" {\n  name      = \"test-function\"\n  image     = \"functions/alpine:latest\"\n  f_process = \"sha512sum\"\n  labels = {\n    Group       = \"London\"\n    Environment = \"Test\"\n  }\n\n  annotations = {\n    CreatedDate = \"Mon Sep  3 07:15:55 BST 2018\"\n  }\n}\n```\n\n[![image](https://user-images.githubusercontent.com/329397/45926773-920cbd80-bf1f-11e8-9b26-88dc5df0fc7e.png)](https://www.youtube.com/watch?v=sSctTy6YIlU\u0026feature=youtu.be)\n\n## Building and Installing\n\nSince this isn't maintained by Hashicorp, you have to install it manually. There\nare two main ways:\n\n### Download a release\n\nDownload and unzip the [latest\nrelease](https://github.com/ewilde/terraform-provider-openfaas/releases/latest).\n\nThen, move the binary to your terraform plugins directory. [The\ndocs](https://www.terraform.io/docs/configuration/providers.html#third-party-plugins)\ndon't fully describe where this is.\n\n* On Mac, it's `~/.terraform.d/plugins/darwin_amd64`\n* On Linux, it's `~/.terraform.d/plugins/linux_amd64`\n* On Windows, it's `$APPDATA\\terraform.d\\plugins\\windows_amd64`\n\n### Build using the Makefile\n\nInstall [Go](https://www.golang.org/) v1.9+ on your machine; clone the source,\nand let `make install` do the rest.\n\n#### Mac\n\n```sh\nbrew install go  # or upgrade\nbrew install dep # or upgrade\nmkdir -p $GOPATH/src/github.com/ewilde; cd $GOPATH/src/github.com/ewilde\ngit clone https://github.com/ewilde/terraform-provider-openfaas \ncd terraform-provider-openfaas\nmake install\n# it may take a while to download `hashicorp/terraform`. be patient.\n```\n\n#### Linux\n\nInstall go and dep from your favourite package manager or from source. Then:\n\n```sh\nmkdir -p $GOPATH/src/github.com/ewilde; cd $GOPATH/src/github.com/ewilde\ngit clone https://github.com/ewilde/terraform-provider-openfaas \ncd terraform-provider-openfaas\nmake install\n# it may take a while to download `hashicorp/terraform`. be patient.\n```\n\n#### Windows\n\nIn PowerShell, running as Administrator:\n\n```powershell\nchoco install golang\nchoco install dep\nchoco install zip\nchoco install git # for git-bash\nchoco install make\n```\n\nIn a shell that has Make, like Git-Bash:\n\n```sh\nmkdir -p $GOPATH/src/github.com/ewilde; cd $GOPATH/src/github.com/ewilde\ngit clone https://github.com/ewilde/terraform-provider-openfaas \ncd terraform-provider-openfaas\nmake install\n# it may take a while to download `hashicorp/terraform`. be patient.\n```\n\n\n## Developing the Provider\n\nIn order to test the provider, you can simply run `make test`.\n\n```sh\n$ make test\n```\n\nIn order to run the full suite of Acceptance tests, run `make testacc`.\n\n\u003e Note: At the moment the acceptance tests assume OpenFaaS gateway is running on http://localhost:8080 *without* \nbasic authentication enabled.\n\n```sh\n$ make testacc\n```\n\n## Building the documentation\nCurrently a bit manual ¯\\_(ツ)_/¯\n\n1. build the content\n```sh\n$ make website-build\n```\n\n2. copy build output into `gh-pages` branch of this repo\n```sh\n$ git checkout gh-pages \ncp -r ../terraform-website/content/build/docs/providers/openfaas/ ./docs/providers/openfaas\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fewilde%2Fterraform-provider-openfaas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fewilde%2Fterraform-provider-openfaas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fewilde%2Fterraform-provider-openfaas/lists"}