-
Published Question
Has anyone figured out how to configure terraform remote state to work with spaces by using its s3 driver. I have got other things that use s3 to work with spaces but have failed with terraform so far
4
•
•
By
mikebywater
API
Object Storage
Ubuntu 16.04
-
Published Answer
This was actually very simple simply set the ‘endpoint’ in your filesystem config to the FQDN of DO spaces eg. in filesytems.php
…
Accepted Answer:
This was actually very simple simply set the ‘endpoint’ in your filesystem config to the FQDN of DO spaces eg. in filesytems.php
…
•
By
mikebywater
-
Published Question
I am trying to use https://github.com/thephpleague/flysystem-aws-s3-v3 adapter for use with digital ocean spaces as the storage provider as the documentation suggests the api matches amazon s3
Has anyone managed to ge...
Accepted Answer:
This was actually very simple simply set the 'endpoint' in your filesystem config to the FQDN of DO spaces eg. in filesytems.php
'DO' => [
'driver' => 's3',
'key' => env('AWS_KEY'),
'secret...
3
•
•
By
mikebywater
PHP Frameworks
PHP
-
Published Answer
The new digital ocean “spaces” object storage seems a good fit for me. Its got a similar api to amazon s3 storage and you would con…
•
By
mikebywater
-
Published Question
I have got the new spaces object storage available but cant find api documentation
Accepted Answer:
Hi mikebywater,
Try this out: https://developers.digitalocean.com/documentation/spaces/?utmmedium=email&utmsource=local&utm_campaign=ObjectStorageEA
Regards,
sensor196
2
•
•
By
mikebywater
PHP