@billowy-army-68599 Sorry for not including more info. So create_app_role is a function i created within the ___main___.py. The create_app_role function takes the following inputs._
endpoint - the endpoint is only available after the previous resource is deployed.
_admin_username - username to log into the endpoint_
_admin_password - admin password_
_app_role_payload - a dictionary / REST payload_
_role_name - name of the role to create_
The basics of what I'm trying to do is.
1. deploy aws opensearch
2. call the opensearch internal API to create roles and users after it is deployed.
endpoint needs to be a str, but it is a Output<str>. How can I get it to be a str? Or is there a better approach ?
TypeError: can only concatenate str (not "Output") to str