Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ integration-env: compose-build
@docker-compose -f docker-compose.yml -f docker-compose.integration-test.yml up

quickstart: compose-build
@docker-compose -f docker-compose.yml -f docker-compose.integration-quickstart.yml up -d
@docker-compose -f docker-compose.yml -f docker-compose.integration-test.yml up -d
@docker exec -it fidesops python quickstart.py

####################
Expand Down
34 changes: 0 additions & 34 deletions docker-compose.integration-quickstart.yml

This file was deleted.

1 change: 1 addition & 0 deletions docker-compose.integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ services:

mysql_example:
image: mysql
platform: linux/amd64
command: --default-authentication-plugin=mysql_native_password
restart: always
environment:
Expand Down
8 changes: 4 additions & 4 deletions quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -630,15 +630,15 @@ def print_results(request_id: str) -> None:
)
print("""
┌─┐┌┬┐┌─┐┌─┐ ┌┬┐┬ ┬┌─┐
└─┐ │ ├┤ ├─┘ │ ││││ │ ... Create an access policy
└─┐ │ ├┤ ├─┘ │ ││││ │ ... Create an access policy rule
└─┘ ┴ └─┘┴ ┴ └┴┘└─┘
""")
print(
"-------------------------------------------------------------------------------------"
)
data_category = 'user.provided.identifiable'
print(
f"Press [enter] to create a Policy that accesses information with the data category '{data_category}':"
f"Press [enter] to create a Policy Rule that accesses information with the data category '{data_category}':"
)
input()

Expand Down Expand Up @@ -694,7 +694,7 @@ def print_results(request_id: str) -> None:
print(
"""
┌─┐┌┬┐┌─┐┌─┐ ┌─┐┌─┐┬ ┬┬─┐
└─┐ │ ├┤ ├─┘ ├┤ │ ││ │├┬┘ ... Create an erasure policy
└─┐ │ ├┤ ├─┘ ├┤ │ ││ │├┬┘ ... Create an erasure policy rule
└─┘ ┴ └─┘┴ └ └─┘└─┘┴└─
"""
)
Expand All @@ -704,7 +704,7 @@ def print_results(request_id: str) -> None:

# Create a policy that erases all user data
print(
f"Press [enter] to create a Policy describing how to erase information with the data category `{data_category}`:"
f"Press [enter] to create a Policy Rule describing how to erase information with the data category `{data_category}`:"
)
input()

Expand Down