https://github.com/floydspace/terraform-provider-strava
🏃 This is a terraform provider for managing your strava.
https://github.com/floydspace/terraform-provider-strava
provider strava terraform webhook
Last synced: 3 months ago
JSON representation
🏃 This is a terraform provider for managing your strava.
- Host: GitHub
- URL: https://github.com/floydspace/terraform-provider-strava
- Owner: floydspace
- License: mit
- Created: 2023-04-03T11:15:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T20:12:18.000Z (almost 3 years ago)
- Last Synced: 2024-04-13T20:03:01.472Z (over 2 years ago)
- Topics: provider, strava, terraform, webhook
- Language: Go
- Homepage: https://registry.terraform.io/providers/floydspace/strava
- Size: 27.3 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-strava
This is a terraform provider for managing your strava.
## Example
```tf
provider "strava" {
client_id = "5"
client_secret = "7b2946535949ae70f015d696d8ac602830ece412"
}
resource "strava_push_subscription" "example" {
callback_url = "http://a-valid.com/url"
verify_token = "STRAVA"
}
output "subscription_id" {
value = strava_push_subscription.example.id
}
```
## Installation
Add the following to your terraform configuration
```tf
terraform {
required_providers {
strava = {
source = "floydspace/strava"
version = "~> 0.1.0"
}
}
}
```