This is a Terraform provider that lets you:
- provision resources on Kowabunga instance
Getting Started
In your main.tf
file, specify the version you want to use:
terraform {
required_providers {
kowabunga = {
source = "dalet-oss/kowabunga"
}
}
}
provider "kowabunga" {
# Configuration options
}
And now run terraform init:
$ terraform init
Provider configuration
provider "kowabunga" {
uri = "http://kowabunga:port"
token = "kowabunga_api_token"
}
## Authors
* The Kowabunga Project (https://www.kowabunga.cloud/)