File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -498,6 +498,8 @@ func TestAccPortActionAdvancedFormConfigurations(t *testing.T) {
498
498
myStringIdentifier3 = {
499
499
title = "myStringIdentifier3"
500
500
required = false
501
+ format = "entity"
502
+ blueprint = port_blueprint.microservice.id
501
503
dataset = {
502
504
"combinator" : "and",
503
505
"rules" : [
Original file line number Diff line number Diff line change @@ -184,10 +184,14 @@ func ActionSchema() map[string]schema.Attribute {
184
184
"omit_payload" : schema.BoolAttribute {
185
185
MarkdownDescription : "Omit the payload when invoking the action" ,
186
186
Optional : true ,
187
+ Computed : true ,
188
+ Default : booldefault .StaticBool (false ),
187
189
},
188
190
"omit_user_inputs" : schema.BoolAttribute {
189
191
MarkdownDescription : "Omit the user inputs when invoking the action" ,
190
192
Optional : true ,
193
+ Computed : true ,
194
+ Default : booldefault .StaticBool (false ),
191
195
},
192
196
"report_workflow_status" : schema.BoolAttribute {
193
197
MarkdownDescription : "Report the workflow status when invoking the action" ,
@@ -210,10 +214,14 @@ func ActionSchema() map[string]schema.Attribute {
210
214
"omit_payload" : schema.BoolAttribute {
211
215
MarkdownDescription : "Omit the payload when invoking the action" ,
212
216
Optional : true ,
217
+ Computed : true ,
218
+ Default : booldefault .StaticBool (false ),
213
219
},
214
220
"omit_user_inputs" : schema.BoolAttribute {
215
221
MarkdownDescription : "Omit the user inputs when invoking the action" ,
216
222
Optional : true ,
223
+ Computed : true ,
224
+ Default : booldefault .StaticBool (false ),
217
225
},
218
226
"default_ref" : schema.StringAttribute {
219
227
MarkdownDescription : "The default ref of the action" ,
You can’t perform that action at this time.
0 commit comments