Provider configurations
Provider configurations
Example Usage
hcl
provider "kestra" {
# mandatory, the url to kestra
url = "http://localhost:8080"
# optional basic auth username
username = "john"
# optional basic auth password
password = "my-password"
# optional jwt token
jwt = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6Iktlc3RyYS5pbyIsImlhdCI6MTUxNjIzOTAyMn0.hm2VKztDJP7CUsI69Th6Y5NLEQrXx7OErLXay55GD5U"
}
Schema
Optional
jwt
(String, Sensitive) Kestra JWT tokenpassword
(String, Sensitive) Kestra BasicAuth passwordurl
(String) Kestra full endpoint url without trailing slashusername
(String) Kestra BasicAuth username