{"id":18454326,"url":"https://github.com/1password/terraform-provider-onepassword","last_synced_at":"2026-01-16T12:08:02.645Z","repository":{"id":37923618,"uuid":"319441206","full_name":"1Password/terraform-provider-onepassword","owner":"1Password","description":"Use the 1Password Terraform Provider to reference, create, or update items in your 1Password Vaults.","archived":false,"fork":false,"pushed_at":"2024-12-12T17:16:44.000Z","size":13431,"stargazers_count":336,"open_issues_count":58,"forks_count":52,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-04-01T07:42:24.927Z","etag":null,"topics":["1password","1password-connect","go","secrets-management","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"https://developer.1password.com/docs/terraform/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/1Password.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2020-12-07T20:51:57.000Z","updated_at":"2025-03-22T17:29:00.000Z","dependencies_parsed_at":"2022-07-11T21:01:53.140Z","dependency_job_id":"bb4fac36-534e-4ee8-8a91-2c35dfd23190","html_url":"https://github.com/1Password/terraform-provider-onepassword","commit_stats":{"total_commits":234,"total_committers":25,"mean_commits":9.36,"dds":0.7478632478632479,"last_synced_commit":"b942ecfa7ddabb48916af46b62369f8d454ebd28"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1Password%2Fterraform-provider-onepassword","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1Password%2Fterraform-provider-onepassword/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1Password%2Fterraform-provider-onepassword/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1Password%2Fterraform-provider-onepassword/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1Password","download_url":"https://codeload.github.com/1Password/terraform-provider-onepassword/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247801176,"owners_count":20998339,"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":["1password","1password-connect","go","secrets-management","terraform","terraform-provider"],"created_at":"2024-11-06T08:03:47.250Z","updated_at":"2026-01-16T12:08:02.630Z","avatar_url":"https://github.com/1Password.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- Image sourced from https://blog.1password.com/introducing-secrets-automation/ --\u003e\n\u003cimg alt=\"\" role=\"img\" src=\"https://blog.1password.com/posts/2021/secrets-automation-launch/header.svg\"/\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003e1Password Terraform provider\u003c/h1\u003e\n  \u003cp\u003eUse the 1Password Terraform provider to access and manage items in your 1Password vaults.\u003c/p\u003e\n  \u003ca href=\"#-get-started\"\u003e\n    \u003cimg alt=\"Get started\" src=\"https://user-images.githubusercontent.com/45081667/226940040-16d3684b-60f4-4d95-adb2-5757a8f1bc15.png\" height=\"37\"/\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n---\n\n## ✨ Get started\n\n- See the [examples](./examples/) directory for detailed examples.\n- For more details check out [1Password Terraform Provider documentation](https://developer.1password.com/docs/terraform/).\n\n```tf\nterraform {\n  required_providers {\n    onepassword = {\n      source = \"1Password/onepassword\"\n    }\n  }\n}\n\nprovider \"onepassword\" {\n  service_account_token = \"\u003c1Password service account token\u003e\"\n}\n\nvariable \"vault_id\" {}\n\n# Using section_map for direct field access by label\nresource \"onepassword_item\" \"demo_credentials\" {\n  vault = var.vault_id\n\n  title    = \"Demo API Credentials\"\n  category = \"login\"\n\n  section_map = {\n    \"api_credentials\" = {\n      field_map = {\n        \"api_key\" = {\n          type  = \"CONCEALED\"\n          value = \"your-api-key\"\n        }\n        \"api_secret\" = {\n          type = \"CONCEALED\"\n          password_recipe = {\n            length  = 32\n            symbols = false\n          }\n        }\n      }\n    }\n  }\n}\n\n# Access fields directly by label\noutput \"api_key\" {\n  value     = onepassword_item.demo_credentials.section_map[\"api_credentials\"].field_map[\"api_key\"].value\n  sensitive = true\n}\n\n# Using section (list) for block syntax\nresource \"onepassword_item\" \"demo_login\" {\n  vault = var.vault_id\n\n  title    = \"Demo Terraform Login\"\n  category = \"password\"\n\n  username = \"demo-username\"\n\n  password_recipe {\n    length  = 40\n    symbols = false\n  }\n}\n```\n\n## 🛠️ Contributing\n\nFor the contribution guidelines, see [CONTRIBUTING.md](/CONTRIBUTING.md).\n\nStill not sure where or how to begin? We're happy to help! You can join the [Developer Slack workspace](https://join.slack.com/t/1password-devs/shared_invite/zt-1halo11ps-6o9pEv96xZ3LtX_VE0fJQA), and ask us any questions there.\n\n## 💙 Community \u0026 Support\n\n- File an [issue](https://github.com/1Password/terraform-provider-onepassword/issues) for bugs and feature requests.\n- Join the [Developer Slack workspace](https://join.slack.com/t/1password-devs/shared_invite/zt-1halo11ps-6o9pEv96xZ3LtX_VE0fJQA).\n- Subscribe to the [Developer Newsletter](https://1password.com/dev-subscribe/).\n\n## 🔐 Security\n\n1Password requests you practice responsible disclosure if you discover a vulnerability.\n\nPlease file requests by sending an email to bugbounty@agilebits.com.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1password%2Fterraform-provider-onepassword","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1password%2Fterraform-provider-onepassword","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1password%2Fterraform-provider-onepassword/lists"}