diff --git a/chainlink-testing-framework/run-tests/action.yml b/chainlink-testing-framework/run-tests/action.yml index f4381d7..7dfa9e0 100644 --- a/chainlink-testing-framework/run-tests/action.yml +++ b/chainlink-testing-framework/run-tests/action.yml @@ -72,6 +72,10 @@ inputs: aws_registries: required: false description: AWS registries to log into for the test if needed + aws_role_duration_seconds: + required: false + default: "3600" + description: The duration to be logged into the aws role for dep_chainlink_integration_tests: required: false description: chainlink/integration-tests commit or branch @@ -111,6 +115,7 @@ runs: cache_restore_only: ${{ inputs.cache_restore_only }} cache_key_id: ${{ inputs.cache_key_id }} aws_registries: ${{ inputs.aws_registries }} + aws_role_duration_seconds: ${{ inputs.aws_role_duration_seconds }} QA_AWS_REGION: ${{ inputs.QA_AWS_REGION }} QA_AWS_ROLE_TO_ASSUME: ${{ inputs.QA_AWS_ROLE_TO_ASSUME }} QA_KUBECONFIG: ${{ inputs.QA_KUBECONFIG }} diff --git a/chainlink-testing-framework/setup-run-tests-environment/action.yml b/chainlink-testing-framework/setup-run-tests-environment/action.yml index f0d577e..b047255 100644 --- a/chainlink-testing-framework/setup-run-tests-environment/action.yml +++ b/chainlink-testing-framework/setup-run-tests-environment/action.yml @@ -23,6 +23,10 @@ inputs: aws_registries: required: false description: AWS registries to log into for the test if needed + aws_role_duration_seconds: + required: false + default: "3600" + description: The duration to be logged into the aws role for QA_AWS_REGION: required: true description: The AWS region to use @@ -52,7 +56,7 @@ runs: with: aws-region: ${{ inputs.QA_AWS_REGION }} role-to-assume: ${{ inputs.QA_AWS_ROLE_TO_ASSUME }} - role-duration-seconds: 3600 + role-duration-seconds: ${{ inputs.aws_role_duration_seconds }} - name: Set Kubernetes Context uses: azure/k8s-set-context@v3 with: