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
Hello! 👋
It looks like there is a small typo in the documentation for the API Key Resource
The example shows that the permissions_endpoints argument accepts an endpoint and HTTP verb arguments.
resource "fusionauth_api_key" "example" {
tenant_id = "94f751c5-4883-4684-a817-6b106778edec"
description = "my super secret key"
key = "super-secret-key"
permissions_endpoints {
endpoint = "/api/application"
get = true
delete = true
patch = true
post = true
put = true
}
}
However, the "Argument Reference" section describes that the endpoint and HTTP verb arguments should be included on the lambda_reconcile_id argument, rather than the permissions_endpoints argument. Also, the description on both arguments looks to be the wrong way around.
The text was updated successfully, but these errors were encountered:
Hello! 👋
It looks like there is a small typo in the documentation for the API Key Resource
The example shows that the
permissions_endpoints
argument accepts an endpoint and HTTP verb arguments.However, the "Argument Reference" section describes that the endpoint and HTTP verb arguments should be included on the
lambda_reconcile_id
argument, rather than thepermissions_endpoints
argument. Also, the description on both arguments looks to be the wrong way around.The text was updated successfully, but these errors were encountered: