Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
Terraform provider for managing and automating resources within Goliat Dashboard, enabling seamless Infrastructure as Code (IaC) capabilities.
https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
goliat-dashboard iaas terraform terraform-provider
Last synced: 27 days ago
JSON representation
Terraform provider for managing and automating resources within Goliat Dashboard, enabling seamless Infrastructure as Code (IaC) capabilities.
- Host: GitHub
- URL: https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
- Owner: danieljsaldana
- License: mpl-2.0
- Created: 2024-11-01T19:13:09.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-12-10T22:05:36.000Z (about 1 month ago)
- Last Synced: 2024-12-10T22:27:35.672Z (about 1 month ago)
- Topics: goliat-dashboard, iaas, terraform, terraform-provider
- Language: Go
- Homepage: https://registry.terraform.io/providers/danieljsaldana/goliat-dashboard/latest/docs
- Size: 134 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Terraform Provider for Goliat Dashboard
The Terraform provider for [Goliat Dashboard](https://github.com/danieljsaldana/goliat-dashboard) allows for the management and automation of resources within Goliat Dashboard, facilitating Infrastructure as Code (IaC) for your project.
## Overview
Goliat Dashboard is a comprehensive solution for monitoring and managing services. This provider enables users to create and manage organizations and projects in Goliat Dashboard using Terraform.
## Features
- Manage organizations (`goliatdashboard_organization`).
- Manage projects (`goliatdashboard_project`).## Prerequisites
- [Terraform](https://www.terraform.io/downloads.html) v1.0.0 or higher.
- An authentication token for Goliat Dashboard.
- Access to a running instance of Goliat Dashboard.## Installation
1. Install the provider from the Terraform Registry or clone this repository and build it:
```bash
go install github.com/your-username/terraform-provider-goliat-dashboard@latest
```2. Configure the provider in your `main.tf` file:
```hcl
terraform {
required_providers {
goliatdashboard = {
source = "your-username/goliatdashboard"
version = "1.0.0"
}
}
}
```## Configuration
Include the provider configuration in your `main.tf` file:
```hcl
provider "goliatdashboard" {
backend_url = "https://your-goliat-dashboard.com"
token = "your-authentication-token"
}
```## Usage Examples
### Create an Organization
```hcl
resource "goliatdashboard_organization" "example" {
name = "New Provider Organization"
type = "providerOrganizations"
}
```### Create a Project
```hcl
resource "goliatdashboard_project" "example" {
organization = "example_organization_id"
name = "Example Project"
description = "This is an example project"
}
```## Contributing
Contributions are welcome. To contribute, please open an issue or pull request on [Goliat Dashboard](https://github.com/danieljsaldana/goliat-dashboard).
## License
This project is licensed under the [MPL-2.0](LICENSE).