Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orange-cloudavenue/terraform-provider-cloudavenue
Terraform Cloud Avenue provider
https://github.com/orange-cloudavenue/terraform-provider-cloudavenue
terraform terraform-provider
Last synced: 3 months ago
JSON representation
Terraform Cloud Avenue provider
- Host: GitHub
- URL: https://github.com/orange-cloudavenue/terraform-provider-cloudavenue
- Owner: orange-cloudavenue
- License: mpl-2.0
- Created: 2023-02-03T09:12:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T12:27:17.000Z (8 months ago)
- Last Synced: 2024-05-22T11:57:15.741Z (8 months ago)
- Topics: terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/orange-cloudavenue/cloudavenue
- Size: 13.5 MB
- Stars: 13
- Watchers: 3
- Forks: 2
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Cloud Avenue Provider for Terraform
This is the Cloud Avenue provider for Terraform. It allows you to manage Cloud Avenue resources.
Useful links:
* [Cloud Avenue Provider documentation](https://registry.terraform.io/providers/orange-cloudavenue/cloudavenue/latest/docs)
* [Terraform Documentation](https://www.terraform.io/docs/language/index.html)## Requirements
* [Terraform](https://www.terraform.io/downloads.html) 1.x.x
* [Go](https://golang.org/doc/install) 1.22.x (to build the provider plugin)
* [Cloud Avenue Platform](https://cloud.orange-business.com/offres/infrastructure-iaas/cloud-avenue/)## Using the Cloud Avenue Provider
To quickly get started with the Cloud Avenue Provider, you can use the following example:
```hcl
terraform {
required_providers {
cloudavenue = {
source = "orange-cloudavenue/cloudavenue"
version = "0.1.0"
}
}
}provider "cloudavenue" {
org = "my-org"
user = "my-user"
password = "my-password"
}
```## Contributing
This provider is open source and contributions are welcome.
If you want to contribute to this provider, please read the [contributing guidelines](CONTRIBUTING.md).
You may also report issues or feature requests on the [GitHub issue tracker](https://github.com/orange-cloudavenue/terraform-provider-cloudavenue/issues/new/choose).
You can consult a [listing of resources and datasources](cmd/listing/resource-ca.md).