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
@@ -78,6 +79,10 @@ func (a *invokeAction) Schema(ctx context.Context, req action.SchemaRequest, res
78
79
Description: "Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context object. This is only used for mobile applications.",
79
80
Optional: true,
80
81
},
82
+
"tenant_id": schema.StringAttribute{
83
+
Description: "The Tenant Id for lambda function invocation. This is mandatory, if tenancy_config is enabled in lambda function",
84
+
Optional: true,
85
+
},
81
86
},
82
87
}
83
88
}
@@ -134,6 +139,10 @@ func (a *invokeAction) Invoke(ctx context.Context, req action.InvokeRequest, res
Copy file name to clipboardExpand all lines: website/docs/actions/lambda_invoke.html.markdown
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,3 +220,4 @@ This action supports the following arguments:
220
220
*`payload` - (Required) JSON payload to send to the Lambda function. This should be a valid JSON string that represents the event data for your function. The payload size limit is 6 MB for synchronous invocations and 256 KB for asynchronous invocations.
221
221
*`region` - (Optional) Region where this action should be [run](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the [provider configuration](https://registry.terraform.io/providers/hashicorp/aws/latest/docs#aws-configuration-reference).
222
222
*`qualifier` - (Optional) Version or alias of the Lambda function to invoke. If not specified, the `$LATEST` version will be invoked. Can be a version number (e.g., `1`) or an alias (e.g., `PROD`).
223
+
*`tenant_id` - (Optional) Tenant Id to serve invocations from specified tenant.
0 commit comments