Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bitovi.tools #264

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ jobs:
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID_JIRA_INTEGRATIONS}}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY_JIRA_INTEGRATIONS}}
aws_default_region: us-east-1
aws_resource_identifier: bitovi-jira-timeline-report-prod
aws_resource_identifier: bitovi-jira-status-reports-prod

tf_state_bucket_destroy: true
tf_state_bucket: bitovi-jira-timeline-report-prod-tf-state
tf_state_bucket: bitovi-jira-status-reports-prod-tf-state

aws_r53_enable: true
aws_r53_sub_domain_name: status-reports
aws_r53_domain_name: bitovi.tools
aws_r53_create_sub_cert: true
aws_r53_sub_domain_name: timeline-report
aws_r53_domain_name: bitovi-jira.com
aws_elb_app_port: 3000

docker_full_cleanup: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ jobs:
tf_state_bucket_destroy: true

aws_r53_enable: true
aws_r53_sub_domain_name: status-reports-staging
aws_r53_domain_name: bitovi.tools
aws_r53_create_sub_cert: true
aws_r53_sub_domain_name: timeline-report-staging
aws_r53_domain_name: bitovi-jira.com
aws_elb_app_port: 3000

docker_full_cleanup: true
Expand Down
4 changes: 2 additions & 2 deletions scripts/atlassian-connect/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { Command } from "commander";
const deploymentConnectMetadata = {
staging: {
name: "Status Reports for Jira (Staging)",
baseUrl: "https://statusreports-staging.bitovi.com",
baseUrl: "https://status-reports-staging.bitovi.tools",
key: "bitovi.status-report.staging",
},
production: {
name: "Status Reports for Jira",
baseUrl: "https://statusreports.bitovi.com",
baseUrl: "https://status-reports.bitovi.tools",
key: "bitovi.status-report",
},
} as const;
Expand Down
Loading