{"id":50924486,"url":"https://github.com/vinit-devops/jsm-operations-terraform","last_synced_at":"2026-06-16T21:01:38.589Z","repository":{"id":315363575,"uuid":"1059183892","full_name":"vinit-devops/jsm-operations-terraform","owner":"vinit-devops","description":"Terraform source modules for JSM Operations.","archived":false,"fork":false,"pushed_at":"2026-01-28T16:21:50.000Z","size":31,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-29T07:22:29.340Z","etag":null,"topics":["jsm","jsm-operations","modules","terraform"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vinit-devops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-18T05:37:59.000Z","updated_at":"2026-01-28T16:53:55.000Z","dependencies_parsed_at":"2025-10-22T04:33:22.557Z","dependency_job_id":null,"html_url":"https://github.com/vinit-devops/jsm-operations-terraform","commit_stats":null,"previous_names":["vinit-devops/jsm-operations-terraform"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vinit-devops/jsm-operations-terraform","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinit-devops%2Fjsm-operations-terraform","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinit-devops%2Fjsm-operations-terraform/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinit-devops%2Fjsm-operations-terraform/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinit-devops%2Fjsm-operations-terraform/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vinit-devops","download_url":"https://codeload.github.com/vinit-devops/jsm-operations-terraform/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vinit-devops%2Fjsm-operations-terraform/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34423233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jsm","jsm-operations","modules","terraform"],"created_at":"2026-06-16T21:01:37.263Z","updated_at":"2026-06-16T21:01:38.583Z","avatar_url":"https://github.com/vinit-devops.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSM Operations Terraform Modules\n\nThis repository contains Terraform modules for managing **Jira Service Management (JSM) Operations** resources in a consistent and automated way. The modules centralize configuration for teams, integrations, alert policies, and notification policies, ensuring governance and reusability across environments.\n\n## Overview\n\nThese modules provide a standardized way to manage JSM Operations infrastructure using the [Atlassian Operations Terraform Provider](https://registry.terraform.io/providers/atlassian/atlassian-operations/latest/docs). Each module is designed to be reusable, well-documented, and follows Terraform best practices.\n\n## Available Modules\n\n- **[`team`](./team)** - Create and manage JSM Operations teams and their members\n- **[`alert_policy`](./alert_policy)** - Define and manage alert policies for incident routing\n- **[`notification_policy`](./notification_policy)** - Configure user/team notification rules and auto-close actions\n- **[`api_integration`](./api_integration)** - Manage API integrations for external systems\n- **[`email_integration`](./email_integration)** - Manage email integrations for alert ingestion\n- **[`integration_action`](./integration_action)** - Define integration actions for processing alerts and incidents\n\n## Requirements\n\n- **Terraform** \u003e= 1.5.0\n- **Atlassian Operations Provider** ~\u003e 1.0\n- **JSM Operations API Key** with required permissions\n\n## Quick Start\n\n### Provider Configuration\n\nConfigure the Atlassian Operations provider in your Terraform configuration:\n\n```hcl\nterraform {\n  required_providers {\n    atlassian-operations = {\n      source  = \"registry.terraform.io/atlassian/atlassian-operations\"\n      version = \"~\u003e 1.0\"\n    }\n  }\n}\n\nprovider \"atlassian-operations\" {\n  api_key = var.jsm_ops_api_key\n  # Optional: base_url = \"https://api.atlassian.com\"\n}\n```\n\n### Example Usage\n\n```hcl\nmodule \"team\" {\n  source = \"./team\"\n\n  organization_id = \"your-org-id\"\n  team = {\n    display_name = \"Platform Engineering\"\n    description  = \"Platform engineering team\"\n    members = [\n      { id = \"account-id-1\" },\n      { id = \"account-id-2\" }\n    ]\n  }\n}\n\nmodule \"alert_policy\" {\n  source = \"./alert_policy\"\n\n  alert_policy = {\n    name        = \"Critical Alerts\"\n    description = \"Route critical alerts to on-call team\"\n    enabled     = true\n    filter = {\n      type = \"match-all\"\n      conditions = [\n        {\n          field          = \"priority\"\n          operation      = \"equals\"\n          expected_value = \"P1\"\n        }\n      ]\n    }\n    actions = [\"notify-team\"]\n  }\n}\n```\n\n## Module Documentation\n\nEach module includes detailed documentation:\n\n- [Team Module](./team/README.md)\n- [Alert Policy Module](./alert_policy/README.md)\n- [Notification Policy Module](./notification_policy/README.md)\n- [API Integration Module](./api_integration/README.md)\n- [Email Integration Module](./email_integration/README.md)\n- [Integration Action Module](./integration_action/README.md)\n\n## Examples\n\nSee the [examples](./examples) directory for complete usage examples of each module and how to combine multiple modules together.\n\n## Authentication\n\nThe modules require a JSM Operations API key. You can obtain this from your Atlassian organization settings. Set it as an environment variable or in your Terraform variables:\n\n```bash\nexport ATLASSIAN_OPERATIONS_API_KEY=\"your-api-key\"\n```\n\nOr use a Terraform variable:\n\n```hcl\nvariable \"jsm_ops_api_key\" {\n  description = \"JSM Operations API Key\"\n  type        = string\n  sensitive   = true\n}\n```\n\n## Resources\n\n- [Atlassian Operations Provider Documentation](https://registry.terraform.io/providers/atlassian/atlassian-operations/latest/docs)\n- [Provider GitHub Repository](https://github.com/atlassian/terraform-provider-atlassian-operations)\n- [JSM Operations Documentation](https://support.atlassian.com/jira-service-management-cloud/docs/)\n\n## Contributing\n\nContributions are welcome! Please ensure that:\n\n- All modules follow the established structure and naming conventions\n- Documentation is updated for any changes\n- Examples are provided for new features\n- Code follows Terraform best practices\n\n## License\n\nSee [LICENSE](./LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinit-devops%2Fjsm-operations-terraform","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvinit-devops%2Fjsm-operations-terraform","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvinit-devops%2Fjsm-operations-terraform/lists"}