This provider supplies a replacement resource for the builtin terraform_data
resource, with the added functionality of a sensitive_input attribute that
will produce sensitive_output (marked as "sensitive"), thus preventing leaking
sensitive input to plan output.
Note: sensitive variables will still be visible in state! Store your state
safely to avoid leaks.
See generated docs.
Installing is the same as for any provider on the Terraform registry:
terraform {
required_providers {
camo = {
source = "meridianleap/camo"
version = "<desired_version>"
}
}
}- Clone the repository.
cdinto the repository directory.- Build the provider using
go install .command:
go install .