https://github.com/floydspace/terraform-provider-wso2apim
🚪 Terraform provider for managing APIs on WSO2 API Manager.
https://github.com/floydspace/terraform-provider-wso2apim
Last synced: over 1 year ago
JSON representation
🚪 Terraform provider for managing APIs on WSO2 API Manager.
- Host: GitHub
- URL: https://github.com/floydspace/terraform-provider-wso2apim
- Owner: floydspace
- License: mit
- Created: 2024-03-07T23:21:33.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T12:43:23.000Z (over 2 years ago)
- Last Synced: 2024-05-22T18:20:50.177Z (about 2 years ago)
- Language: Go
- Homepage: https://registry.terraform.io/providers/floydspace/wso2apim
- Size: 120 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-provider-wso2apim
This is a terraform provider for managing APIs on WSO2 API Manager.
## Example
```tf
provider "wso2apim" {
host = "https://localhost:9443"
client_id = "NPA"
client_secret = "123456"
}
resource "wso2apim_application" "example" {
name = "foo-service"
description = "This is a foo service"
throttling_policy = "Unlimited"
token_type = "JWT"
}
output "application_id" {
value = wso2apim_application.example.id
}
```
## Installation
Add the following to your terraform configuration
```tf
terraform {
required_providers {
wso2apim = {
source = "floydspace/wso2apim"
version = "~> 0.1.0"
}
}
}
```