mirror of
				https://github.com/hiskang/acme.sh
				synced 2025-10-31 02:17:18 +00:00 
			
		
		
		
	Merge pull request #512 from ksperling/dnsaws
Add support for AWS_SESSION_TOKEN and fix bug when multiple hosted zones exist
This commit is contained in:
		
						commit
						5bb518ff0f
					
				| @ -27,8 +27,10 @@ dns_aws_add() { | |||||||
|     return 1 |     return 1 | ||||||
|   fi |   fi | ||||||
| 
 | 
 | ||||||
|  |   if [ -z "$AWS_SESSION_TOKEN" ]; then | ||||||
|     _saveaccountconf AWS_ACCESS_KEY_ID "$AWS_ACCESS_KEY_ID" |     _saveaccountconf AWS_ACCESS_KEY_ID "$AWS_ACCESS_KEY_ID" | ||||||
|     _saveaccountconf AWS_SECRET_ACCESS_KEY "$AWS_SECRET_ACCESS_KEY" |     _saveaccountconf AWS_SECRET_ACCESS_KEY "$AWS_SECRET_ACCESS_KEY" | ||||||
|  |   fi | ||||||
| 
 | 
 | ||||||
|   _debug "First detect the root zone" |   _debug "First detect the root zone" | ||||||
|   if ! _get_root "$fulldomain"; then |   if ! _get_root "$fulldomain"; then | ||||||
| @ -91,7 +93,7 @@ _get_root() { | |||||||
|       fi |       fi | ||||||
| 
 | 
 | ||||||
|       if _contains "$response" "<Name>$h.</Name>"; then |       if _contains "$response" "<Name>$h.</Name>"; then | ||||||
|         hostedzone="$(echo "$response" | sed 's/<HostedZone>/\n&/g' | _egrep_o "<HostedZone>.*<Name>$h.<.Name>.*<.HostedZone>")" |         hostedzone="$(echo "$response" | sed 's/<HostedZone>/\n&/g' | _egrep_o "<HostedZone>.*?<Name>$h.<.Name>.*?<.HostedZone>")" | ||||||
|         _debug hostedzone "$hostedzone" |         _debug hostedzone "$hostedzone" | ||||||
|         if [ -z "$hostedzone" ]; then |         if [ -z "$hostedzone" ]; then | ||||||
|           _err "Error, can not get hostedzone." |           _err "Error, can not get hostedzone." | ||||||
| @ -139,9 +141,13 @@ aws_rest() { | |||||||
| 
 | 
 | ||||||
|   aws_host="$AWS_HOST" |   aws_host="$AWS_HOST" | ||||||
|   CanonicalHeaders="host:$aws_host\nx-amz-date:$RequestDate\n" |   CanonicalHeaders="host:$aws_host\nx-amz-date:$RequestDate\n" | ||||||
|   _debug2 CanonicalHeaders "$CanonicalHeaders" |  | ||||||
| 
 |  | ||||||
|   SignedHeaders="host;x-amz-date" |   SignedHeaders="host;x-amz-date" | ||||||
|  |   if [ -n "$AWS_SESSION_TOKEN" ]; then | ||||||
|  |     _H2="x-amz-security-token: $AWS_SESSION_TOKEN" | ||||||
|  |     CanonicalHeaders="${CanonicalHeaders}x-amz-security-token:$AWS_SESSION_TOKEN\n" | ||||||
|  |     SignedHeaders="${SignedHeaders};x-amz-security-token" | ||||||
|  |   fi | ||||||
|  |   _debug2 CanonicalHeaders "$CanonicalHeaders" | ||||||
|   _debug2 SignedHeaders "$SignedHeaders" |   _debug2 SignedHeaders "$SignedHeaders" | ||||||
| 
 | 
 | ||||||
|   RequestPayload="$data" |   RequestPayload="$data" | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user