-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
28 lines (21 loc) · 1.54 KB
/
env.example
File metadata and controls
28 lines (21 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# ── Jira credentials ──────────────────────────────────────────────────────────
# Your Jira Cloud base URL
JIRA_BASE_URL=https://your-org.atlassian.net
# The email address associated with your Atlassian account
JIRA_EMAIL=you@example.com
# API token from https://id.atlassian.com/manage-profile/security/api-tokens
JIRA_API_TOKEN=your_api_token_here
# ── Ansible ───────────────────────────────────────────────────────────────────
# SSH user for Ansible to connect as on target nodes
ANSIBLE_USER=sre
# Path to your SSH private key
ANSIBLE_PRIVATE_KEY=~/.ssh/id_rsa
# Directory where playbooks are stored (relative to project root)
PLAYBOOKS_DIR=playbooks
# ── Engineer identity ─────────────────────────────────────────────────────────
# Defaults to $USER (your OS login). Override here if needed.
# ENGINEER_USERNAME=your.name
# ── Jira workflow ─────────────────────────────────────────────────────────────
# Transition ID for "In Progress" in your Jira project workflow.
# Find yours: GET /rest/api/3/issue/{ticket}/transitions
JIRA_TRANSITION_IN_PROGRESS=21