We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fddc6d8 commit f218c96Copy full SHA for f218c96
1 file changed
src/Deployer.php
@@ -131,15 +131,15 @@ public function cloudfront_invalidate_all_items() : void {
131
- an IAM role.
132
*/
133
if (
134
- Controller::getValue( 's3AccessKeyID' ) &&
135
- Controller::getValue( 's3SecretAccessKey' )
+ Controller::getValue( 'cfAccessKeyID' ) &&
+ Controller::getValue( 'cfSecretAccessKey' )
136
) {
137
138
$credentials = new \Aws\Credentials\Credentials(
139
- Controller::getValue( 's3AccessKeyID' ),
+ Controller::getValue( 'cfAccessKeyID' ),
140
\WP2Static\CoreOptions::encrypt_decrypt(
141
'decrypt',
142
143
)
144
);
145
}
0 commit comments