Categorygithub.com/webcerebrium/terraform-provider-openssl
modulepackage
0.0.0-20210503190045-10b6a7e65de2
Repository: https://github.com/webcerebrium/terraform-provider-openssl.git
Documentation: pkg.go.dev

# README

:warning: 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

# Packages

No description provided by the author