dongzhi4498 2019-05-07 07:02
浏览 60
已采纳

Aws Php SDk - 使用硬编码凭证创建Cloudfront分发

I'm trying to create a cloudfront distribution while doing the authentication via hardcoded credentials.

However i receive this error when i run my code Fatal error: Uncaught Aws\Exception\CredentialsException: Cannot read credentials from /.aws/credentials

It seems that the aws sdk is trying to authentificate using the second method listed here ( https://docs.aws.amazon.com/sdk-for-php/v3/developer-guide/guide_credentials.html ) - the one when you put the credentials in ./aws folder

Here is my code (taken from aws documentation ) - Any idea why this is not working ?

public function create_cloudfront_client(){

    $region='us-east-1';   
    $client = new Aws\CloudFront\CloudFrontClient([
        'profile' => 'default',
        'version'       =>  'latest',
        'region'  => 'us-east-1', 
         'debug' => true,
        'credentials' =>[
                    'key'    => $this->aws_key,
                    'secret' => $this->aws_secret,
                    ],
              ]);

    $originName = 'cloudfrontme';
    $s3BucketURL = 'https://s3.amazonaws.com/cloudfrontme';
    $callerReference = 'uniquestring99';
    $comment = 'Created by AWS SDK for PHP';
    $cacheBehavior = [

        'AllowedMethods' => [
            'CachedMethods' => [
                'Items' => ['HEAD', 'GET'],
                'Quantity' => 2,
            ],
            'Items' => ['HEAD', 'GET'],
            'Quantity' => 2,
        ],
        'Compress' => false,
        'DefaultTTL' => 0,
        'FieldLevelEncryptionId' => '',
        'ForwardedValues' => [
            'Cookies' => [
                'Forward' => 'none',
            ],
            'Headers' => [
                'Quantity' => 0,
            ],
            'QueryString' => false,
            'QueryStringCacheKeys' => [
                'Quantity' => 0,
            ],
        ],
        'LambdaFunctionAssociations' => ['Quantity' => 0],
        'MaxTTL' => 0,
        'MinTTL' => 0,
        'SmoothStreaming' => false,
        'TargetOriginId' => $originName,
        'TrustedSigners' => [
            'Enabled' => false,
            'Quantity' => 0,
        ],
        'ViewerProtocolPolicy' => 'allow-all',
    ];

    $enabled = false;
    $origin = [
        'Items' => [
            [
                'DomainName' => $s3BucketURL,
                'Id' => $originName,
                'OriginPath' => '',
                'CustomHeaders' => ['Quantity' => 0],
                'S3OriginConfig' => ['OriginAccessIdentity' => ''],

            ],
        ],
        'Quantity' => 1,
    ];



    $distribution = [
        'CallerReference' => $callerReference,
        'Comment' => $comment,
        'DefaultCacheBehavior' => $cacheBehavior,
        'Enabled' => $enabled,
        'Origins' => $origin,

    ];

    try {
        $result = $client->createDistribution([
            'DistributionConfig' => $distribution, //REQUIRED
        ]);
        var_dump($result);
    } catch (AwsException $e) {
        // output error message if fails
        echo $e->getMessage();
        echo "
";
    }
}
  • 写回答

1条回答 默认 最新

  • douang4294 2019-05-09 09:37
    关注

    The solution was to create the cloudfront client like this

     $client =  Aws\CloudFront\CloudFrontClient::factory(array(
            'region' => $bucket_region,
            'version' => 'latest',
    
            'credentials' => [
                'key'    => $this->aws_key,
                'secret' => $this->aws_secret,
                ]
    
        ));
    

    However i don't understand why this version works while the one below (from aws docs ) does not. Can anyone explain this ? Thanks

    $client = new Aws\CloudFront\CloudFrontClient([
        'version'       =>  'latest',
        'region' => $bucket_region,
         'debug' => true,
        'credentials' =>[
                    'key'    => $this->aws_key,
                    'secret' => $this->aws_secret,
                    ],
              ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 gki vendor hook
  • ¥15 centos7中sudo命令无法使用
  • ¥15 灰狼算法和蚁群算法如何结合
  • ¥15 这是一个利用ESP32自带按键和LED控制的录像代码,编译过程出现问题,请解决并且指出错误,指导如何处理 ,协助完成代码并上传代码
  • ¥20 stm32f103,hal库 hal_usart_receive函数接收不到数据。
  • ¥20 求结果和代码,sas利用OPTEX程序和D-efficiency生成正交集
  • ¥50 adb连接不到手机是怎么回事?
  • ¥20 抓取数据时发生错误: get_mooncake_data() missing 1 required positional argument: 'driver'的问题,怎么改出正确的爬虫代码?
  • ¥15 vs2022无法联网
  • ¥15 TCP的客户端和服务器的互联