diff --git a/.release/security-scan.hcl b/.release/security-scan.hcl index da2c1a239d..db033ac545 100644 --- a/.release/security-scan.hcl +++ b/.release/security-scan.hcl @@ -5,6 +5,16 @@ container { dependencies = true alpine_secdb = true secrets = false + + # Triage items that are _safe_ to ignore here. Note that this list should be + # periodically cleaned up to remove items that are no longer found by the scanner. + triage { + suppress { + vulnerabilities = [ + "CVE-2024-13176", # openssl@3.3.2-r4 + ] + } + } } binary { @@ -13,4 +23,15 @@ binary { osv = true oss_index = true nvd = true + + # Triage items that are _safe_ to ignore here. Note that this list should be + # periodically cleaned up to remove items that are no longer found by the scanner. + triage { + suppress { + vulnerabilities = [ + "GO-2025-3408", # yamux@v0.1.1 + "GHSA-29qp-crvh-w22m", # yamux@v0.1.1 + ] + } + } } diff --git a/CODEOWNERS b/CODEOWNERS index c307950dda..2520668fd3 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -2,15 +2,6 @@ # the repo, unless a later match takes precedence. * @hashicorp/boundary -# engineering and web presence get notified of, and can approve changes to, web tooling, but not content. +# web presence and education -/website/ @hashicorp/web-presence @hashicorp/boundary -/website/data/ -/website/public/ -/website/content/ - -# education and engineering get notified of, and can approve changes to web content. - -/website/data/ @hashicorp/boundary-education-approvers @hashicorp/boundary -/website/public/ @hashicorp/boundary-education-approvers @hashicorp/boundary -/website/content/ @hashicorp/boundary-education-approvers @hashicorp/boundary +/website/ @hashicorp/boundary-education-approvers @hashicorp/web-presence @hashicorp/boundary \ No newline at end of file diff --git a/enos/README.md b/enos/README.md index 7511d97695..476e651ddf 100644 --- a/enos/README.md +++ b/enos/README.md @@ -57,16 +57,6 @@ See [enos.vars.hcl](./enos.vars.hcl) for complete descriptions of each variable. You can either modify `enos.vars.hcl` directly or create your own copy at `enos-local.vars.hcl` which gets ignored by git. -### System File Modifications - -For docker-based scenarios, you will need to modify `/etc/hosts` to include the -following lines -``` -127.0.0.1 localhost boundary -127.0.0.1 localhost worker -127.0.0.1 localhost vault -``` - ## Executing Scenarios From the `enos` directory: