Skip to content

Commit

Permalink
Merge pull request #4 from dan-ladd/fix-sandbox-password-auth
Browse files Browse the repository at this point in the history
Deprecate is_sandbox config for domain
  • Loading branch information
dan-ladd authored Apr 25, 2023
2 parents 5091755 + 1a5e8a2 commit ec23777
Show file tree
Hide file tree
Showing 7 changed files with 685 additions and 500 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ You must authenticate with OAuth (`client_id`, `client_secret`, and `refresh_tok
| username | False | None | User/password username |
| password | False | None | User/password password |
| security_token | False | None | User/password generated security token. Reset under your Account Settings |
| is_sandbox | False | False | Is the Salesforce instance a sandbox |
| domain | False | login | Your Salesforce instance domain. Use 'login' (default) or 'test' (sandbox), or Salesforce My domain. |
| action | False | update | How to handle incomming records by default (insert/update/upsert/delete/hard_delete) |
| allow_failures | False | False | Allows the target to continue persisting if a record fails to commit |

Expand Down Expand Up @@ -73,7 +73,7 @@ The following will insert an Account record from `input_example.jsonl` into your
```bash
target-salesforce --version
target-salesforce --help
cat input_example.jsonl | target-salesforce --config /path/to/target-salesforce-config.json
cat input_example.jsonl | target-salesforce --config .secrets/config.json
```

### Create and Run Tests
Expand Down
6 changes: 3 additions & 3 deletions meltano.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ plugins:
- name: security_token
kind: string
description: User/password generated security token. Reset under your Account Settings.
- name: is_sandbox
kind: boolean
description: Is the Salesforce instance a sandbox?
- name: domain
kind: string
description: Your Salesforce instance domain. Use 'login' (default) or 'test' (sandbox), or Salesforce My domain.
- name: action
kind: string
description: To insert/update/upsert/delete/hard_delete records.
Expand Down
Loading

0 comments on commit ec23777

Please sign in to comment.