https://github.com/bgpat/terraform-provider-travis
Terraform Provider for Travis CI
https://github.com/bgpat/terraform-provider-travis
terraform terraform-provider
Last synced: 4 months ago
JSON representation
Terraform Provider for Travis CI
- Host: GitHub
- URL: https://github.com/bgpat/terraform-provider-travis
- Owner: bgpat
- License: mit
- Created: 2020-03-07T14:20:05.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T19:34:54.000Z (4 months ago)
- Last Synced: 2025-03-18T22:11:21.152Z (4 months ago)
- Topics: terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/bgpat/travis/latest
- Size: 358 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Terraform Provider for Travis CI
[](https://registry.terraform.io/providers/bgpat/travis/latest)
## Example
```terraform
// require $TRAVIS_TOKEN
terraform {
required_providers {
travis = {
source = "bgpat/travis"
}
}
}// secret env var
resource "travis_env_var" "secret" {
repository_slug = "bgpat/test"
name = "SECRET_ENV"
value = "secret"
}// public env var
resource "travis_env_var" "public" {
repository_slug = "bgpat/test"
name = "PUBLIC_ENV"
public_value = "public"
}
```- `api_base_url` - API base URL for Travis CI. (default `https://api.travis-ci.com/`)
- `token` - API token [generated by the Travis CI client](https://developer.travis-ci.com/authentication).## Resources
- `travis_env_var` - https://docs.travis-ci.com/user/environment-variables/
Check details of schema with `terraform providers schema`.