Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/callensm/terraform-provider-dropbox
Terraform provider for the Dropbox API
https://github.com/callensm/terraform-provider-dropbox
dropbox go infrastructure-as-code terraform terraform-provider
Last synced: 25 days ago
JSON representation
Terraform provider for the Dropbox API
- Host: GitHub
- URL: https://github.com/callensm/terraform-provider-dropbox
- Owner: callensm
- License: mit
- Created: 2018-05-08T03:47:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-08-30T17:14:52.000Z (about 3 years ago)
- Last Synced: 2024-09-30T12:41:29.646Z (about 1 month ago)
- Topics: dropbox, go, infrastructure-as-code, terraform, terraform-provider
- Language: Go
- Homepage:
- Size: 115 KB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Dropbox Provider
This Terraform provider was modeled off of the [unofficial Dropbox Golang SDK](https://github.com/dropbox/dropbox-sdk-go-unofficial). Follow the usage documentation from that repository to setup your Dropbox application and generate an access token prior to using this provider.
### Provider Usage
```hcl
provider "dropbox" {
access_token = "${var.token}"
}
```**access_token** is the generated auth token from Dropbox when you create an application through their developer console. It can be manually placed in the provider configuration as shown above, or if not provided, it will automatically attempt to retrieve the token value from the `DROPBOX_TOKEN` environment variable.