{ "anchor": "get_secret", "name": "get_secret", "category": "Event", "description": "Returns the value of the given secret from an event.", "arguments": [ { "name": "key", "description": "The name of the secret.", "required": true, "type": [ "string" ] } ], "return": { "types": [ "string", "null" ] }, "examples": [ { "title": "Get the Datadog API key from the event metadata", "source": "get_secret(\"datadog_api_key\")", "return": "secret value" }, { "title": "Get a non existent secret", "source": "get_secret(\"i_dont_exist\")", "return": null } ], "pure": true }