prefect_azure.deployments.steps
Prefect deployment steps for code storage and retrieval in Azure Blob Storage.
These steps can be used in a prefect.yaml file to define the default
push and pull steps for a group of deployments, or they can be used to
define the push and pull steps for a specific deployment.
!!! example
Sample prefect.yaml file that is configured to push and pull to and
from an Azure Blob Storage container:
Functions
push_to_azure_blob_storage
container: The name of the container to push files tofolder: The folder within the container to push tocredentials: A dictionary of credentials with keysconnection_stringoraccount_urland values of the corresponding connection string or account url. If both are provided,connection_stringwill be used.ignore_file: The path to a file containing patterns of files to ignore when pushing to Azure Blob Storage. If not provided, the default.prefectignorefile will be used.
pull_from_azure_blob_storage
container: The name of the container to pull files fromfolder: The folder within the container to pull fromcredentials: A dictionary of credentials with keysconnection_stringoraccount_urland values of the corresponding connection string or account url. If both are provided,connection_stringwill be used.