Skip to content

Commit

Permalink
Fixup ECS secrets docs (#7097)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsanders committed Mar 17, 2022
1 parent 3f6458c commit eff26c4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/content/deployment/guides/aws.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,16 @@ run_launcher:
module: "dagster_aws.ecs"
class: "EcsRunLauncher"
config:
- name: "MY_API_TOKEN"
valueFrom: arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:token::
- name: "MY_PASSWORD"
valueFrom: arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:password::
secrets:
- name: "MY_API_TOKEN"
valueFrom: arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:token::
- name: "MY_PASSWORD"
valueFrom: arn:aws:secretsmanager:us-east-1:123456789012:secret:FOO-AbCdEf:password::
]
}
```

Any secret tagged with `my-tag-name` will be included in the environment. `MY_SECRET` will also be included in the environment.
Any secret tagged with `dagster` will be included in the environment. `MY_API_TOKEN` and `MY_PASSWORD` will also be included in the environment.

## Using S3 for IO Management

Expand Down

1 comment on commit eff26c4

@vercel
Copy link

@vercel vercel bot commented on eff26c4 Mar 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.