=====================
This project contains reusable Terraform modules for provisioning infrastructure on Magalu Cloud.
The modules in this directory are designed to be used as building blocks for creating infrastructure on Magalu Cloud. Each module is a self-contained piece of code that provisions a specific resource or set of resources.
server
: Provisions a virtual machine instance on Magalu Cloud.
To use a module, simply include it in your Terraform configuration file using the module
keyword. For example:
module "my_server" {
source = "../../../modules/server"
name = "my-server"
image_name = "cloud-rocky-09"
}
Each module has a set of input variables that can be used to customize its behavior. These variables are documented in the module's variables.tf
file.
If you'd like to contribute to the development of these modules, please fork the repository and submit a pull request with your changes.