Skip to content

Commit fd6fdb2

Browse files
committed
Update outputs and README
1 parent d795723 commit fd6fdb2

File tree

4 files changed

+28
-2
lines changed

4 files changed

+28
-2
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,31 @@ make airflow-destroy
6868
```
6969
7070
71+
### Access to Airflow UI:
72+
![Airflow UI](assets/airflow-ui.png)
73+
74+
Look for AirflowWebServerEndpoint on outputs logged to your terminal.
75+
```
76+
"cfn-airflow-webserver": [
77+
{
78+
"OutputKey": "AirflowWebServerEndpoint",
79+
"OutputValue": "airflow-dev-webserver-alb-1234567890.us-east-1.elb.amazonaws.com"
80+
}
81+
],
82+
```
83+
84+
85+
### Access to Flower UI:
86+
![Airflow UI](assets/flower-ui.png)
87+
88+
Look for AirflowFlowerEndpoint on outputs logged to your terminal.
89+
```
90+
"cfn-airflow-flower": [
91+
{
92+
"OutputKey": "AirflowFlowerEndpoint",
93+
"OutputValue": "airflow-dev-flower-alb-1234567890.us-east-1.elb.amazonaws.com"
94+
}
95+
],
96+
```
97+
7198
*Inspired by the work done by [Nicor88](https://github.com/nicor88/aws-ecs-airflow)*

assets/airflow-ui.png

188 KB
Loading

assets/flower-ui.png

175 KB
Loading

deploy_cloudformation.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,7 @@ def restart_airflow_ecs():
164164

165165

166166
def log_outputs():
167-
cf_templates = get_cloudformation_templates()
168-
cf_templates = filter_infra_templates(cf_templates, True)
167+
cf_templates = get_cloudformation_templates(reverse=True)
169168
outputs = {}
170169
logging.info(f'\n\n\n## OUTPUTS ##')
171170
for cf_template in cf_templates:

0 commit comments

Comments
 (0)