I have created an MWAA Cluster using terraform. I am trying to import variables using the curl command. But it fails with a 403 Exception. Airflow Version: v1.10.12 Exception:
You don't have the permission to access the requested resource. It is either read-protected or not readable by the server.
Script used:
interpreter = ["/bin/bash", "-c"]
command = <<EOF
export MWAA_ENVIRONMENT=${var.mwaa_name}
OP=$(aws mwaa create-cli-token --name $MWAA_ENVIRONMENT)
CLI_TOKEN=$(echo $OP | jq -r '.CliToken')
curl -s --request POST "https://test/aws_mwaa/cli" \
--header "Authorization: Bearer $CLI_TOKEN" \
--header "Content-Type: text/plain" \
--data-raw "variables -s $key $value"
EOF
This python script is allowing me to upload a sinlge variable to mwaa instance but If I pass nested json as a input text it's giving me 500 error.
Full script is available here