Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Terraform Provider to wrap "openssl passwd" command

License

Notifications You must be signed in to change notification settings

webcerebrium/terraform-provider-openssl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ This repo is DEPRECATED. We recommend to use htpasswd from Terraform Registry in new projects.

terraform-provider-openssl

Terraform Provider to wrap openssl passwd command

This provider can become handy to including password hashes into you terraform plan.

Its main resource, openssl_passwd has password value on input and and hash on output.

Example Usage

provider "openssl" {
}

resource "openssl_passwd" password {
    value = "mysecret"
    algorithm = "apr1"
    salt = "xxxxxxx"
}

will produce openssl_passwd.password.hash

License

MIT