diff --git a/docs/content/deployment/guides/aws.mdx b/docs/content/deployment/guides/aws.mdx index 8f2c13c5e80fb..68f7f93197a4d 100644 --- a/docs/content/deployment/guides/aws.mdx +++ b/docs/content/deployment/guides/aws.mdx @@ -5,7 +5,7 @@ description: To deploy Dagster to AWS, EC2 or ECS can host the Dagster webserver # Deploying Dagster to Amazon Web Services -This guide provides instructions for deploying Dagster on Amazon Web Services (AWS). You can use EC2 or ECS to host the Dagster webserver and the Dagster daemon, RDS to store runs and events, and S3 as an I/O manager to store op inputs and outputs. +This guide provides instructions for deploying Dagster on Amazon Web Services (AWS). You can use EC2 or ECS to host the Dagster webserver and the Dagster daemon, RDS to store runs and events, and S3 as an I/O manager to store pipeline and outputs and intermediate data. --- diff --git a/docs/docs-beta/docs/guides/data-modeling/configuring-assets.md b/docs/docs-beta/docs/guides/data-modeling/configuring-assets.md index 1a0563ddb4b65..c3b3081b66920 100644 --- a/docs/docs-beta/docs/guides/data-modeling/configuring-assets.md +++ b/docs/docs-beta/docs/guides/data-modeling/configuring-assets.md @@ -1,6 +1,6 @@ --- -title: Configuring assets via the UI -sidebar_label: Configuring assets via the UI +title: Configuring assets using the Dagster UI +sidebar_label: Configuring assets using the Dagster UI sidebar_position: 50 --- @@ -10,9 +10,8 @@ Often, you will want to be able to tweak some parameters when materializing thes ## What you'll learn -- How to add configuration to your assets -- How to modify the configuration when launching a run -- When to use asset configuration vs. [resources](/docs/concepts/resources) +- How to make your assets configurable +- How to provide configuration when launching a run --- @@ -28,13 +27,13 @@ To follow the steps in this guide, you'll need: --- -## Adding configuration to assets +## Making assets configurable For an asset to be configurable, you must first define a schema that inherits from the Dagster `Config` class. For example, let's say we want to allow users to change the lookback time window for an asset: -## Modifying the configuration when launching a run +## Providing configuration when launching a run When launching a run using Dagster's Launchpad, you can provide a run config file as YAML or JSON that overrides the default configuration for your asset: