GitPedia

Terraform provider onepassword

Use the 1Password Terraform Provider to reference, create, or update items in your 1Password Vaults.

From 1Password·Updated June 8, 2026·View on GitHub·

1Password Terraform provider Use the 1Password Terraform provider to access and manage items in your 1Password vaults. The project is written primarily in Go, distributed under the MIT License license, first published in 2020. Key topics include: 1password, 1password-connect, go, secrets-management, terraform.

Latest release: v3.3.1
March 19, 2026View Changelog →
<!-- Image sourced from https://blog.1password.com/introducing-secrets-automation/ --> <img alt="" role="img" src="https://blog.1password.com/posts/2021/secrets-automation-launch/header.svg"/> <div align="center"> <h1>1Password Terraform provider</h1> <p>Use the 1Password Terraform provider to access and manage items in your 1Password vaults.</p> <a href="#-get-started"> <img alt="Get started" src="https://user-images.githubusercontent.com/45081667/226940040-16d3684b-60f4-4d95-adb2-5757a8f1bc15.png" height="37"/> </a> </div>

✨ Get started

This project is licensed under MIT. Use of the 1Password APIs and services accessed through these tools is governed by the 1Password API Terms of Service.

tf
terraform { required_providers { onepassword = { source = "1Password/onepassword" } } } provider "onepassword" { service_account_token = "<1Password service account token>" } variable "vault_id" {} # Using section_map for direct field access by label resource "onepassword_item" "demo_credentials" { vault = var.vault_id title = "Demo API Credentials" category = "login" section_map = { "api_credentials" = { field_map = { "api_key" = { type = "CONCEALED" value = "your-api-key" } "api_secret" = { type = "CONCEALED" password_recipe = { length = 32 symbols = false } } } } } } # Access fields directly by label output "api_key" { value = onepassword_item.demo_credentials.section_map["api_credentials"].field_map["api_key"].value sensitive = true } # Using section (list) for block syntax resource "onepassword_item" "demo_login" { vault = var.vault_id title = "Demo Terraform Login" category = "password" username = "demo-username" password_recipe { length = 40 symbols = false } }

🛠️ Contributing

For the contribution guidelines, see CONTRIBUTING.md.

Still not sure where or how to begin? We're happy to help! You can join the Developer Slack workspace, and ask us any questions there.

💙 Community & Support

🔐 Security

1Password requests you practice responsible disclosure if you discover a vulnerability.

Please file requests by sending an email to bugbounty@agilebits.com.

Contributors

Showing top 12 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from 1Password/terraform-provider-onepassword via the GitHub API.Last fetched: 6/15/2026