-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 16591-updat-drupal-core-to-v102
- Loading branch information
Showing
8 changed files
with
108 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# AWS Assets | ||
|
||
This is a list of some generic AWS assets that are not directly traceable to this team, i.e. they are not managed in Terraform or other IaC. The purpose of this document is to clarify ownership and collect relevant information so that these assets are more discoverable and their _raison d'être_ more transparent. | ||
|
||
## IAM Users (Service Accounts) | ||
|
||
The following were added in #5611 to work with certain S3 buckets; these are intended to allow transfer of files from CMS file stores to an S3 bucket designated for public access to those files. These systems are not fully in place yet, but are in progress. | ||
|
||
- `svc-dsva-vagov-cms-dev-assets` | ||
- `svc-dsva-vagov-prod-cms-files` | ||
- `svc-dsva-vagov-prod-cms-test-files` | ||
- `svc-dsva-vagov-staging-cms-files` | ||
- `svc-dsva-vagov-staging-cms-test-files` | ||
|
||
The following account may be necessary for GitHub Actions workflows (currently under the purview of Accelerated Publishing) to interact with AWS resources. | ||
|
||
- `svc-gh-vagov-ap-user` | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
#!/bin/bash -l | ||
|
||
cd "${TUGBOAT_ROOT}" | ||
./bin/drush advancedqueue:queue:process command_runner 2>&1 | ||
|
21 changes: 21 additions & 0 deletions
21
tests/cypress/integration/features/content_type/vba_facility_service.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@content_type__vba_facility_service | ||
Feature: CMS User may effectively interact with the VBA Facility service form | ||
In order to confirm that cms user have access to the necessary functionality | ||
As anyone involved in the project | ||
I need to have certain functionality available | ||
|
||
Scenario: Log in and try to create a VBA Facility service as a VBA editor | ||
When I am logged in as a user with the roles "content_creator_vba, content_publisher" | ||
And my workbench access sections are set to "1065" | ||
And I am at "/node/add/vba_facility_service" | ||
Then I should see an option with the text "Columbia VA Regional Benefit Office" from dropdown with selector "#edit-field-office" | ||
And I should not see an option with the text "Cheyenne VA Regional Benefit Office" from dropdown with selector "#edit-field-office" | ||
|
||
Scenario: Log in and try to create a VBA Facility service as a VBA editor with 2 sections | ||
When I am logged in as a user with the roles "content_creator_vba, content_publisher" | ||
And my workbench access sections are set to "1065,1104" | ||
And I am at "/node/add/vba_facility_service" | ||
Then I should see an option with the text "Cheyenne VA Regional Benefit Office" from dropdown with selector "#edit-field-office" | ||
And I should see an option with the text "Columbia VA Regional Benefit Office" from dropdown with selector "#edit-field-office" | ||
And I should not see an option with the text "Denver VA Regional Benefit Office" from dropdown with selector "#edit-field-office" | ||
|