Disabling insecure HTTP access on storage is essential to prevent unauthorized access and data breaches as it ensures that all access to storage is encrypted in transit, providing an additional layer of security for sensitive data.
Secure your storage by disabling cleartext (HTTP) access and enforce the use of encrypted (HTTPS) connections.
Enforce storage secure access.
Quickfix uses cloud provider APIs to safely resolve the issue automatically.
aws s3api put-bucket-policy --bucket hooli-terraform --policy '{"Version":"2012-10-17","Statement":[{"Principal":{"AWS":"*"},"Action":["s3:*"],"Resource":["arn:aws:s3:::hooli-terraform/*","arn:aws:s3:::hooli-terraform"],"Effect":"Deny","Condition":{"Bool":{"aws:SecureTransport":"false"}}}]}'