Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nader-ziada committed Nov 19, 2024
1 parent 0420f8d commit 80bf0e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion ci/tasks/run-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ image_resource:
source: {repository: bosh/integration}
inputs:
- name: bosh-cpi-src
- name: bosh-cpi-src-test
- name: environment
- name: stemcell
run:
path: bosh-cpi-src/ci/tasks/run-integration.sh
path: bosh-cpi-src-test/ci/tasks/run-integration.sh
params:
AWS_ACCESS_KEY_ID: ""
AWS_SECRET_ACCESS_KEY: ""
Expand Down
10 changes: 5 additions & 5 deletions src/bosh_aws_cpi/spec/integration/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,18 @@ def set_assume_role_permissions
rspec_config.before(:all) do
#set_assume_role_permissions

access_key_id: ENV.fetch('BOSH_AWS_ACCESS_KEY_ID'),
secret_access_key: ENV.fetch('BOSH_AWS_SECRET_ACCESS_KEY'),
session_token: ENV.fetch('BOSH_AWS_SESSION_TOKEN', nil)
@access_key_id = ENV.fetch('BOSH_AWS_ACCESS_KEY_ID')
@secret_access_key = ENV.fetch('BOSH_AWS_SECRET_ACCESS_KEY')
@session_token = ENV.fetch('BOSH_AWS_SESSION_TOKEN', nil)
@subnet_id = ENV.fetch('BOSH_AWS_SUBNET_ID')
@subnet_zone = ENV.fetch('BOSH_AWS_SUBNET_ZONE')
@kms_key_arn = ENV.fetch('BOSH_AWS_KMS_KEY_ARN')
@kms_key_arn_override = ENV.fetch('BOSH_AWS_KMS_KEY_ARN_OVERRIDE')
@region = ENV.fetch('BOSH_AWS_REGION', 'us-west-1')
@default_key_name = ENV.fetch('BOSH_AWS_DEFAULT_KEY_NAME', 'bosh')
@ami = ENV.fetch('BOSH_AWS_IMAGE_ID', 'ami-866d3ee6')
access_key_id: ENV.fetch('BOSH_AWS_PERMISSIONS_AUDITOR_KEY_ID'),
secret_access_key: ENV.fetch('BOSH_AWS_PERMISSIONS_AUDITOR_SECRET_KEY'),
@permissions_auditor_key_id = ENV.fetch('BOSH_AWS_PERMISSIONS_AUDITOR_KEY_ID', nil)
@permissions_auditor_secret_key = ENV.fetch('BOSH_AWS_PERMISSIONS_AUDITOR_SECRET_KEY', nil)

@cpi_api_version = ENV.fetch('BOSH_AWS_CPI_API_VERSION', 1).to_i

Expand Down

0 comments on commit 80bf0e0

Please sign in to comment.