- See the examples directory for detailed examples.
- For more details check out 1Password Terraform Provider documentation.
terraform {
required_providers {
onepassword = {
source = "1Password/onepassword"
version = "~> 2.0.0"
}
}
}
provider "onepassword" {
service_account_token = "<1Password service account token>"
}
variable "vault_id" {}
resource "onepassword_item" "demo_login" {
vault = var.vault_id
title = "Demo Terraform Login"
category = "password"
username = "demo-username"
password_recipe {
length = 40
symbols = false
}
}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.
- File an issue for bugs and feature requests.
- Join the Developer Slack workspace.
- Subscribe to the Developer Newsletter.
1Password requests you practice responsible disclosure if you discover a vulnerability.
Please file requests by sending an email to [email protected].