A Terraform provider for managing Jira resources using the go-atlassian library.
The provider is available on the Terraform Registry.
terraform {
required_providers {
jira = {
source = "devops-wiz/jira"
version = "~> 1.0"
}
}
}
provider "jira" {
# Configuration options
}- Clone the repository
- Build the provider using
go build -o terraform-provider-jira - Move the binary to the appropriate Terraform plugin directory
Please read our CONTRIBUTING.md for environment setup, build, lint, test, and docs workflows. We standardize on Go 1.24.x (go.mod toolchain set to 1.24.3). Optional local hooks are available via pre-commit.
Community and Security:
We welcome PRs! Keep changes focused, include tests where possible, and update docs as needed. See CONTRIBUTING for acceptance test guidance.
This project is licensed under the Mozilla Public License 2.0 - see the LICENSE file for details.
- go-atlassian - The Go library used to interact with Atlassian APIs
- Terraform Plugin Framework - The framework used to develop this provider