You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: `The configuration of Cloud SQL instance that is used by the Apache Airflow software.`,
398
+
Elem: &schema.Resource{
399
+
Schema: map[string]*schema.Schema{
400
+
"machine_type": {
401
+
Type: schema.TypeString,
402
+
Required: true,
403
+
ForceNew: true,
404
+
Description: `Optional. Cloud SQL machine type used by Airflow database. It has to be one of: db-n1-standard-2, db-n1-standard-4, db-n1-standard-8 or db-n1-standard-16. If not specified, db-n1-standard-2 will be used.`,
405
+
},
406
+
},
407
+
},
408
+
},
409
+
"web_server_config": {
410
+
Type: schema.TypeList,
411
+
Optional: true,
412
+
Computed: true,
413
+
AtLeastOneOf: composerConfigKeys,
414
+
MaxItems: 1,
415
+
Description: `The configuration settings for the Airflow web server App Engine instance.`,
416
+
Elem: &schema.Resource{
417
+
Schema: map[string]*schema.Schema{
418
+
"machine_type": {
419
+
Type: schema.TypeString,
420
+
Required: true,
421
+
ForceNew: true,
422
+
Description: `Optional. Machine type on which Airflow web server is running. It has to be one of: composer-n1-webserver-2, composer-n1-webserver-4 or composer-n1-webserver-8. If not specified, composer-n1-webserver-2 will be used. Value custom is returned only in response, if Airflow web server parameters were manually changed to a non-standard values.`,
423
+
},
424
+
},
425
+
},
426
+
},
389
427
"airflow_uri": {
390
428
Type: schema.TypeString,
391
429
Computed: true,
@@ -623,6 +661,30 @@ func resourceComposerEnvironmentUpdate(d *schema.ResourceData, meta interface{})
0 commit comments