Created
February 5, 2020 10:02
-
-
Save GodsEye-07/27a7e943ee06f938e22b32febe1e4fb7 to your computer and use it in GitHub Desktop.
Internet permission for AWS S3 upload
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>NSAppTransportSecurity</key> | |
<dict> | |
<key>NSAllowsArbitraryLoads</key> | |
<true/> | |
<key>NSExceptionDomains</key> | |
<dict> | |
<key>amazonaws.com</key> | |
<dict> | |
<key>NSThirdPartyExceptionMinimumTLSVersion</key> | |
<string>TLSv1.0</string> | |
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key> | |
<false/> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
</dict> | |
<key>amazonaws.com.cn</key> | |
<dict> | |
<key>NSThirdPartyExceptionMinimumTLSVersion</key> | |
<string>TLSv1.0</string> | |
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key> | |
<false/> | |
<key>NSIncludesSubdomains</key> | |
<true/> | |
</dict> | |
</dict> | |
</dict> | |
<key>AWS</key> | |
<dict> | |
<key>CredentialsProvider</key> | |
<dict> | |
<key>CognitoIdentity</key> | |
<dict> | |
<key>Default</key> | |
<dict> | |
<key>PoolId</key> | |
<string>*****your poolID here*****</string> | |
<key>Region</key> | |
<string>ap-south-1</string> //your region here | |
</dict> | |
</dict> | |
</dict> | |
<key>S3TransferManager</key> | |
<dict> | |
<key>Default</key> | |
<dict> | |
<key>Region</key> | |
<string>ap-south-1</string> | |
</dict> | |
</dict> | |
</dict> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment