Skip to content
Open
Show file tree
Hide file tree
Changes from 7 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
2 changes: 1 addition & 1 deletion .amazonq/rules/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- **app.py** - Main CDK application entry point for Jira integration
- **app_service_now.py** - CDK application entry point for ServiceNow integration
- **app_slack.py** - CDK application entry point for Slack integration
- **deploy-integrations-solution.py** - CLI deployment script with integration parameters
- **deploy_integrations_solution.py** - CLI deployment script with integration parameters
- **cdk.json** - CDK configuration and feature flags
- **requirements.txt** - Python dependencies (includes asset-specific requirements)
- **requirements-dev.txt** - Development and testing dependencies
Expand Down
6 changes: 3 additions & 3 deletions .amazonq/rules/tech.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ pip install -r requirements-dev.txt # optional dev dependencies

### Deployment
```bash
./deploy-integrations-solution.py jira --email user@example.com --url https://example.atlassian.net --token TOKEN --project-key PROJ
./deploy-integrations-solution.py service-now --instance-id INSTANCE --username USER --password PASS
./deploy-integrations-solution.py slack --bot-token xoxb-TOKEN --signing-secret SECRET --workspace-id WORKSPACE
./deploy_integrations_solution.py jira --email user@example.com --url https://example.atlassian.net --token TOKEN --project-key PROJ
./deploy_integrations_solution.py service-now --instance-id INSTANCE --username USER --password PASS
./deploy_integrations_solution.py slack --bot-token xoxb-TOKEN --signing-secret SECRET --workspace-id WORKSPACE
```

### Testing and Quality
Expand Down
2 changes: 1 addition & 1 deletion .kiro/steering/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- **app.py** - Main CDK application entry point for Jira integration
- **app_service_now.py** - CDK application entry point for ServiceNow integration
- **deploy-integrations-solution.py** - CLI deployment script with integration-specific parameters
- **deploy_integrations_solution.py** - CLI deployment script with integration-specific parameters
- **cdk.json** - CDK configuration and feature flags
- **requirements.txt** - Python dependencies (includes asset-specific requirements)
- **requirements-dev.txt** - Development and testing dependencies
Expand Down
4 changes: 2 additions & 2 deletions .kiro/steering/tech.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ pip install -r requirements-dev.txt

```bash
# Deploy Jira integration
./deploy-integrations-solution.py jira --email user@example.com --url https://example.atlassian.net --token TOKEN --project-key PROJ
./deploy_integrations_solution.py jira --email user@example.com --url https://example.atlassian.net --token TOKEN --project-key PROJ

# Deploy ServiceNow integration (under development)
./deploy-integrations-solution.py service-now --instance-id INSTANCE --username USER --password PASS
./deploy_integrations_solution.py service-now --instance-id INSTANCE --username USER --password PASS
```

### Testing
Expand Down
2 changes: 1 addition & 1 deletion assets/security_ir_client/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ aws-lambda-powertools>=2.30.2
requests>=2.31.0
pysnc
PyJWT==2.10.1
cryptography==46.0.3
cryptography>=46.0.3
2 changes: 1 addition & 1 deletion assets/service_now_client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
boto3>=1.37.7
pysnc
PyJWT==2.10.1
cryptography==46.0.3
cryptography>=46.0.3
2 changes: 1 addition & 1 deletion assets/service_now_notifications_handler/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ boto3>=1.37.7
pysnc
aws-lambda-powertools>=2.30.0
PyJWT==2.10.1
cryptography==46.0.3
cryptography>=46.0.3
6 changes: 3 additions & 3 deletions assets/service_now_resource_setup_handler/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
requests==2.32.4
boto3==1.34.0
PyJWT==2.8.0
cryptography==41.0.7
boto3>=1.37.7
PyJWT==2.10.1
cryptography>=46.0.3
2 changes: 1 addition & 1 deletion assets/slack_client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
boto3>=1.26.0
boto3>=1.37.7
slack-bolt>=1.18.0
slack-sdk>=3.23.0
requests>=2.28.0
Loading
Loading