Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/danieljsaldana/terraform-provider-goliat-dashboard
- Owner: danieljsaldana
- License: mpl-2.0
- Created: 2024-11-01T19:13:09.000Z (17 days ago)
- Default Branch: main
- Last Pushed: 2024-11-02T03:02:31.000Z (17 days ago)
- Last Synced: 2024-11-02T03:17:43.108Z (17 days ago)
- Language: Go
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- 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).