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

Can now specify using HTTPS in MarkLogic #110

Merged
merged 1 commit into from
Oct 17, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
MarklogicHost=${{ secrets.MARKLOGIC_HOST }}
MarklogicPassword=${{ secrets.MARKLOGIC_PASSWORD }}
MarklogicUser=${{ secrets.MARKLOGIC_USER }}
MarklogicUseHttps=${{ vars.MARKLOGIC_USE_HTTPS }}
MaxRetries=${{ vars.MAX_RETRIES }}
NotifyApiKey=${{ secrets.NOTIFY_API_KEY }}
NotifyEditorialAddress=${{ vars.NOTIFY_EDITORIAL_ADDRESS }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
MarklogicHost=${{ secrets.MARKLOGIC_HOST }}
MarklogicPassword=${{ secrets.MARKLOGIC_PASSWORD }}
MarklogicUser=${{ secrets.MARKLOGIC_USER }}
MarklogicUseHttps=${{ vars.MARKLOGIC_USE_HTTPS }}
MaxRetries=${{ vars.MAX_RETRIES }}
NotifyApiKey=${{ secrets.NOTIFY_API_KEY }}
NotifyEditorialAddress=${{ vars.NOTIFY_EDITORIAL_ADDRESS }}
Expand Down
4 changes: 4 additions & 0 deletions template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ Parameters:
MarklogicUser:
Description: "MARKLOGIC_USER"
Type: "String"
MarklogicUseHttps:
Description: "MARKLOGIC_USE_HTTPS"
Type: "String"
MaxRetries:
Description: "MAX_RETRIES"
Type: "String"
Expand Down Expand Up @@ -71,6 +74,7 @@ Resources:
MARKLOGIC_HOST: !Ref MarklogicHost
MARKLOGIC_PASSWORD: !Ref MarklogicPassword
MARKLOGIC_USER: !Ref MarklogicUser
MARKLOGIC_USE_HTTPS: !Ref MarklogicUseHttps
MAX_RETRIES: !Ref MaxRetries
NOTIFY_API_KEY: !Ref NotifyApiKey
NOTIFY_EDITORIAL_ADDRESS: !Ref NotifyEditorialAddress
Expand Down