All Projects → nrkno → terraform-provider-lastpass

nrkno / terraform-provider-lastpass

Licence: Apache-2.0 License
Terraform Lastpass provider

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to terraform-provider-lastpass

Hashicorp Vault Plugin
Jenkins plugin to populate environment variables from secrets stored in HashiCorp's Vault.
Stars: ✭ 191 (+247.27%)
Mutual labels:  secret-management, secrets
k8s-vault-webhook
A k8s vault webhook is a Kubernetes webhook that can inject secrets into Kubernetes resources by connecting to multiple secret managers
Stars: ✭ 107 (+94.55%)
Mutual labels:  secret-management, secrets
Keywhiz
A system for distributing and managing secrets
Stars: ✭ 2,452 (+4358.18%)
Mutual labels:  secret-management, secrets
Envkey App
Secure, human-friendly, cross-platform secrets and config.
Stars: ✭ 83 (+50.91%)
Mutual labels:  secret-management, secrets
envkey-python
EnvKey's python library. Protect API keys and credentials. Keep configuration in sync.
Stars: ✭ 24 (-56.36%)
Mutual labels:  secret-management, secrets
Secretary
DEPRECATED Secrets management for dynamic environments
Stars: ✭ 93 (+69.09%)
Mutual labels:  secret-management, secrets
actions
Load secrets into GitHub Actions
Stars: ✭ 47 (-14.55%)
Mutual labels:  secret-management, secrets
Conjur
CyberArk Conjur automatically secures secrets used by privileged users and machine identities
Stars: ✭ 441 (+701.82%)
Mutual labels:  secret-management, secrets
thycotic.secretserver
PowerShell module for automating with Thycotic Secret Server REST API
Stars: ✭ 41 (-25.45%)
Mutual labels:  secret-management, secrets
terraform-aws-secrets-manager
Terraform module to create Amazon Secrets Manager resources.
Stars: ✭ 37 (-32.73%)
Mutual labels:  secret-management, secrets
Secretserver
Secret Server PowerShell Module
Stars: ✭ 82 (+49.09%)
Mutual labels:  secret-management, secrets
envkey-node
EnvKey's official Node.js client library
Stars: ✭ 46 (-16.36%)
Mutual labels:  secret-management, secrets
Helm Secrets
DEPRECATED A helm plugin that help manage secrets with Git workflow and store them anywhere
Stars: ✭ 1,129 (+1952.73%)
Mutual labels:  secret-management, secrets
Helm Secrets
Successor of zendesk/helm-secrets - A helm plugin that help manage secrets with Git workflow and store them anywhere
Stars: ✭ 165 (+200%)
Mutual labels:  secret-management, secrets
Repo Supervisor
Scan your code for security misconfiguration, search for passwords and secrets. 🔍
Stars: ✭ 482 (+776.36%)
Mutual labels:  secret-management, secrets
SecureStore
A .NET implementation of the cross-platform SecureStore (symmetrically-encrypted secrets) protocol
Stars: ✭ 62 (+12.73%)
Mutual labels:  secret-management, secrets
envkeygo
EnvKey's official Go client library
Stars: ✭ 36 (-34.55%)
Mutual labels:  secret-management, secrets
Cryptr
Cryptr: a GUI for Hashicorp's Vault
Stars: ✭ 324 (+489.09%)
Mutual labels:  secret-management, secrets
teller
Cloud native secrets management for developers - never leave your command line for secrets.
Stars: ✭ 998 (+1714.55%)
Mutual labels:  secret-management, secrets
secrets cli
CLI for storing and reading your secrets via vault
Stars: ✭ 24 (-56.36%)
Mutual labels:  secret-management, secrets

terraform-provider-lastpass

release Build Status Go Report Card GoDoc

The Lastpass provider is used to read, manage, or destroy secrets inside Lastpass. Goodbye secret .tfvars files 👋

terraform {
  required_providers {
    lastpass = {
      source = "nrkno/lastpass"
    }
  }
}

resource "lastpass_secret" "mysecret" {
    name = "My site"
    username = "foobar"
    password = file("${path.module}/secret")
    url = "https://example.com"
    note = <<EOF
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam sed elit nec orci
cursus rhoncus. Morbi lacus turpis, volutpat in lobortis vel, mattis nec magna.
Cras gravida libero vitae nisl iaculis ultrices. Fusce odio ligula, pharetra ac
viverra semper, consequat quis risus.
EOF
}

Documentation and examples can be found inside the Terraform registry:

License

Apache

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].