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
Copy file name to clipboardExpand all lines: google/services/workflows/resource_workflows_workflow.go
+40
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,12 @@ Modifying this field for an existing workflow results in a new workflow revision
115
115
Optional: true,
116
116
Description: `Workflow code to be executed. The size limit is 32KB.`,
117
117
},
118
+
"user_env_vars": {
119
+
Type: schema.TypeMap,
120
+
Optional: true,
121
+
Description: `User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 40KiB. Keys cannot be empty strings and cannot start with “GOOGLE” or “WORKFLOWS".`,
122
+
Elem: &schema.Schema{Type: schema.TypeString},
123
+
},
118
124
"create_time": {
119
125
Type: schema.TypeString,
120
126
Computed: true,
@@ -204,6 +210,12 @@ func resourceWorkflowsWorkflowCreate(d *schema.ResourceData, meta interface{}) e
User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 40KiB. Keys cannot be empty strings and cannot start with “GOOGLE” or “WORKFLOWS".
0 commit comments