Home
Softono

Terraform Provider Lastpass

Open source Apache-2.0 Go
60
Stars
8
Forks
8
Issues
1
Watchers
3 years
Last Commit

 About Terraform Provider Lastpass

Terraform Lastpass provider

Platforms

Web Self-hosted

Languages

Go

Links

Need Help Installing Terraform Provider Lastpass?

We provide expert installation service for this software. Our team will install, configure, and secure Terraform Provider Lastpass on your server. plans start at just $30.

Terraform Provider Lastpass

View on GitHub

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