File tree 4 files changed +28
-2
lines changed
4 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -68,4 +68,31 @@ make airflow-destroy
68
68
` ` `
69
69
70
70
71
+ ### Access to Airflow UI:
72
+ 
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
+
71
98
* Inspired by the work done by [ Nicor88] ( https://github.com/nicor88/aws-ecs-airflow ) *
Original file line number Diff line number Diff line change @@ -164,8 +164,7 @@ def restart_airflow_ecs():
164
164
165
165
166
166
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 )
169
168
outputs = {}
170
169
logging .info (f'\n \n \n ## OUTPUTS ##' )
171
170
for cf_template in cf_templates :
You can’t perform that action at this time.
0 commit comments