Skip to content

Commit 7fa1320

Browse files
authored
change 'security control' to 'safeguard' (#298)
Co-authored-by: cyphronix <57731583+liamschn@users.noreply.github.com>
1 parent 4876b72 commit 7fa1320

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

aws_sra_examples/solutions/genai/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This directory contains security solutions for implementing generative AI capabi
1414
## Solutions
1515

1616
- [SRA Bedrock Organizations Solution](./bedrock_org/)
17-
This solution provides an automated framework for deploying Bedrock organizational security controls.
17+
This solution provides an automated framework for deploying Bedrock organizational safeguards.
1818

1919
- [SRA Bedrock Guardrails Solution](./bedrock_guardrails/)
2020
This solution provides an automated framework for deploying Bedrock guardrails across multiple AWS accounts and regions in an organization.

aws_sra_examples/solutions/genai/bedrock_guardrails/lambda/src/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
Version: 1.0
44
5-
Main app module for SRA GenAI Bedrock org security controls solution in the repo,
5+
Main app module for SRA GenAI Bedrock org safeguards solution in the repo,
66
https://github.com/aws-samples/aws-security-reference-architecture-examples
77
88
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

aws_sra_examples/solutions/genai/bedrock_org/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
## Introduction
1515

16-
This solution provides an automated framework for deploying Bedrock organizational security controls using AWS CloudFormation. It leverages a Lambda function to configure and deploy AWS Config rules, CloudWatch metrics, and other resources necessary to monitor and enforce governance policies across multiple AWS accounts and regions in an organization.
16+
This solution provides an automated framework for deploying Bedrock organizational safeguards using AWS CloudFormation. It leverages a Lambda function to configure and deploy AWS Config rules, CloudWatch metrics, and other resources necessary to monitor and enforce governance policies across multiple AWS accounts and regions in an organization.
1717

1818
The architecture follows best practices for security and scalability and is designed for easy extensibility.
1919

@@ -464,7 +464,7 @@ This section explains the parameters in the CloudFormation template that require
464464

465465
## Related Security Control Solutions
466466

467-
This solution works in conjunction with other AWS SRA solutions to provide comprehensive security controls for Bedrock GenAI environments:
467+
This solution works in conjunction with other AWS SRA solutions to provide comprehensive safeguards for Bedrock GenAI environments:
468468

469469
### Amazon Bedrock Guardrails Solution
470470
The [SRA Bedrock Guardrails solution](../../genai/bedrock_guardrails/README.md) provides automated deployment of Amazon Bedrock Guardrails across your organization. It supports:
@@ -487,6 +487,6 @@ The [SRA GuardDuty Malware Protection solution](../../guardduty/guardduty_malwar
487487
The solution enables GuardDuty's malware scanning capabilities to detect malicious files that could be used in prompt injection attacks or compromise your GenAI applications.
488488

489489
These complementary solutions work together to provide defense-in-depth for your Bedrock GenAI environment:
490-
- This solution (SRA Bedrock Org) provides organizational security controls and monitoring
491-
- Bedrock Guardrails solution provides content and data security controls
490+
- This solution (SRA Bedrock Org) provides organizational safeguards and monitoring
491+
- Bedrock Guardrails solution provides content and data safeguards
492492
- GuardDuty Malware Protection ensures S3 bucket security against malware threats

aws_sra_examples/solutions/genai/bedrock_org/lambda/src/app.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
"""This script performs operations to enable, configure, and disable Bedrock security controls.
1+
"""This script performs operations to enable, configure, and disable Bedrock safeguards.
22
33
Version: 1.0
44
5-
Main app module for SRA GenAI Bedrock org security controls solution in the repo,
5+
Main app module for SRA GenAI Bedrock org safeguards solution in the repo,
66
https://github.com/aws-samples/aws-security-reference-architecture-examples
77
88
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
@@ -1955,7 +1955,7 @@ def process_sns_records(event: dict) -> None:
19551955
LOGGER.info({"SNS Record": record})
19561956
message = record["Sns"]["Message"]
19571957
if message["Action"] == "configure":
1958-
LOGGER.info("Continuing process to enable SRA security controls for Bedrock (sns event)")
1958+
LOGGER.info("Continuing process to enable SRA safeguards for Bedrock (sns event)")
19591959

19601960
# 3) Deploy config rules (regional)
19611961
message["Accounts"].append(sts.MANAGEMENT_ACCOUNT)

aws_sra_examples/solutions/genai/bedrock_org/templates/sra-bedrock-org-main.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AWSTemplateFormatVersion: '2010-09-09'
2-
Description: CloudFormation template to deploy the sra-bedrock-org solution for GenAI deep-dive Bedrock capability one security controls. See https://github.com/aws-samples/aws-security-reference-architecture-examples (sra-1u3sd7f8n)
2+
Description: CloudFormation template to deploy the sra-bedrock-org solution for GenAI deep-dive Bedrock capability one safeguards. See https://github.com/aws-samples/aws-security-reference-architecture-examples (sra-1u3sd7f8n)
33

44
Parameters:
55
pSRARepoZipUrl:
@@ -90,7 +90,7 @@ Parameters:
9090
AllowedPattern: '^[\w+=,.@-]{1,64}$'
9191
ConstraintDescription: Max 64 alphanumeric characters. Also special characters supported [+, =, ., @, -]
9292
Default: sra-bedrock-org-lambda
93-
Description: Bedrock security control configuration Lambda role name
93+
Description: Bedrock safeguard configuration Lambda role name
9494
Type: String
9595
AllowedValues: ['sra-bedrock-org-lambda']
9696

0 commit comments

Comments
 (0)