- Table of Contents
- About this project
- Supported Versions
- Using the Cloud Avenue Provider
- Contributing
A Terraform provider to manage CloudAvenue Iaas offer.
Made with ♥ using Go.
- Terraform v1.5
- Go v1.22
It doesn't mean that this provider won't run on previous versions of Terraform or Go, though. It just means that we can't guarantee backward compatibility.
To quickly get started with the Cloud Avenue Provider, you can use the following example:
terraform {
required_providers {
cloudavenue = {
source = "orange-cloudavenue/cloudavenue"
version = ">= 0.20.0"
}
}
}
provider "cloudavenue" {
org = "my-org"
user = "my-user"
password = "my-password"
}
For more information, please refer to the Cloud Avenue Provider documentation.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Please read the CONTRIBUTING.md for more details on our code of conduct, and the process for submitting pull requests to us.