Keycloak
32 строки · 868.0 Байт
1name: Create Aurora Database2description: Create AWS Aurora Database3
4inputs:5name:6description: 'The name of the Aurora DB cluster to deploy'7required: true8region:9description: 'The AWS region used to host the Aurora DB'10required: true11password:12description: 'The master password of the Aurora DB cluster'13required: false14
15outputs:16endpoint:17description: 'The Endpoint URL for Aurora clients to connect to'18value: ${{ steps.create.outputs.endpoint }}19
20runs:21using: "composite"22steps:23- id: create24shell: bash25run: |26source ./aurora_create.sh
27echo "endpoint=${AURORA_ENDPOINT}" >> $GITHUB_OUTPUT
28working-directory: .github/scripts/aws/rds29env:30AURORA_CLUSTER: ${{ inputs.name }}31AURORA_PASSWORD: ${{ inputs.password }}32AURORA_REGION: ${{ inputs.region }}33