-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a sample soc2 config and fixing a long line
- Loading branch information
1 parent
47f8daf
commit b090dbd
Showing
2 changed files
with
27 additions
and
1 deletion.
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,25 @@ | ||
# A minimal soc2 example. | ||
# | ||
# Runs a task that simply lists the default conda environments. | ||
# | ||
# Usage: | ||
# sky launch -c min-soc2 aws_soc2.yaml | ||
# sky down min | ||
|
||
name: minimal | ||
|
||
resources: | ||
cloud: aws | ||
# Disk volumes typically need to be encrypted for SOC2 compliance. | ||
disk_encrypted: true | ||
# Various SOC2 compliance tools check prod versus non-prod status. | ||
# Use labels (which become tags) for this. | ||
labels: | ||
"env": "prod" | ||
|
||
setup: | | ||
echo "running setup" | ||
run: | | ||
conda env list | ||
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