- jq
- pv
- docker or AWS CLI
If you have the AWS CLI already installed, change aws_fetch
to
aws_fetch () {
aws efs describe-file-systems --query 'FileSystems[*].FileSystemId' --no-paginate \
each('$.records[*]', | |
create('Indicator_Result__c', $.data) | |
) | |
// [R/T] ✘ AdaptorError: The requested resource does not exist | |
bulk( | |
'Indicator_Result__c', | |
'upsert', | |
{extIdField: 'Result_UID__c', failOnError: true, allowNoOp: true}, | |
state => state.records |
get('users'); | |
// Follow the mapping spec here | |
// https://docs.google.com/spreadsheets/d/19ZJaudhQXy3J0lKcm5XdK3_ULNjDVMXaG7tuwlyc1zo/edit#gid=1822444315 | |
fn(state => { | |
const addressArray = state.data.map(x => [ | |
x.address.street, | |
x.address.suite, | |
x.address.city, |