35 lines
833 B
Plaintext
35 lines
833 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
include::../ask-yourself.adoc[]
|
||
|
|
||
|
include::../recommended.adoc[]
|
||
|
|
||
|
== Sensitive Code Example
|
||
|
|
||
|
For https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html[AWS::SageMaker::NotebookInstance]:
|
||
|
|
||
|
----
|
||
|
AWSTemplateFormatVersion: '2010-09-09'
|
||
|
Resources:
|
||
|
Notebook: # Sensitive, encryption disabled by default
|
||
|
Type: AWS::SageMaker::NotebookInstance
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
For https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-notebookinstance.html[AWS::SageMaker::NotebookInstance]:
|
||
|
|
||
|
----
|
||
|
AWSTemplateFormatVersion: '2010-09-09'
|
||
|
Resources:
|
||
|
Notebook:
|
||
|
Type: AWS::SageMaker::NotebookInstance
|
||
|
Properties:
|
||
|
KmsKeyId:
|
||
|
Fn::GetAtt:
|
||
|
- SomeKey
|
||
|
- KeyId
|
||
|
----
|
||
|
|
||
|
include::../see.adoc[]
|