diff --git a/cicd/tests/smoke/cli/buildspec.yml b/cicd/tests/smoke/cli/buildspec.yml index bc7d4d2c..20a2053b 100644 --- a/cicd/tests/smoke/cli/buildspec.yml +++ b/cicd/tests/smoke/cli/buildspec.yml @@ -2,11 +2,11 @@ version: 0.2 env: secrets-manager: - GoogleAdminEmail: TestGoogleAdminEmail - SCIMEndpointUrl: TestSCIMEndpointUrl - SCIMAccessToken: TestSCIMAccessToken - IdentityStoreID: TestIdentityStoreId - Region: TestRegion + GoogleAdminEmail: SecretGoogleAdminEmail + SCIMEndpointUrl: SecretSCIMEndpoint + SCIMAccessToken: SecretSCIMAccessToken + IdentityStoreID: SecretIdentityStoreID + Region: SecretRegion variables: ExpectedExitState: 0 @@ -19,7 +19,7 @@ phases: build: commands: - ./ssosync --version - - aws secretsmanager get-secret-value --secret-id=TestGoogleCredentials --query SecretString --output text | jq '.' > credentials.json + - aws secretsmanager get-secret-value --secret-id=SecretGoogleCredential --query SecretString --output text | jq '.' > credentials.json - cat credentials.json - ./ssosync -t "${SCIMAccessToken}" -e "${SCIMEndpointUrl}" -u "${GoogleAdminEmail}" -i "${IdentityStoreID}" -r "${Region}" -s "groups" -g "name:AWS*"; ExitState=$?