Hi in the docs for compute modules there is a reference to moduleAuthToken but I can’t seem to find where that is defined: https://www.palantir.com/docs/foundry/compute-modules/functions/.
if __name__ == "__main__":
certPath = os.environ['CONNECTIONS_TO_OTHER_PODS_CA_PATH']
postSchemaUri = os.environ["POST_SCHEMA_URI"]
with open('schemas.json', 'r') as file:
SCHEMAS = json.load(file)
requests.post(
postSchemaUri,
json=SCHEMAS,
headers={"Module-Auth-Token": moduleAuthToken, "Content-Type": "application/json"},
verify=certPath
)
Would love some help on this
Best,
Jack