nrkno/terraform-provider-lastpass

How to set a folder name while creating a credentials?

kaushik-xs opened this issue · 1 comments

I have organised my password into folders. How to set the name of the folder while creating a credential?

Screenshot 2020-05-17 at 11 45 12 AM

Hi @kaushik-xs,
This is set in the name:

resource "lastpass_secret" "mysecret" {
    name = "some dir/test123"
    username = "foo"
    password = "test123"
    note = <<EOF
ABC
DEF
EOF
}

Let me know if you encounter any problems.