我正在使用Ansible Playbook推送到S3存储桶,然后使用Cloudfront分发通过https服务该站点。
我想使用Ansible Playbook来实现此功能,但是我无法正确配置任务。我不确定在哪里指定存储桶的S3原点?
- cloudfront_distribution:
comment: 'description'
enabled: yes
state: present
default_root_object: index.html
validate_certs: yes
viewer_certificate:
acm_certificate_arn: {arn of certificate}
alias: {www.mydomain.com}
origins:
- id: 'id'
s3_origin_access_identity_enabled: yes
我在哪里可以指定我想通过Cloudfront服务的S3存储桶?
我尝试使用origins
指定S3存储桶的URL。但是到目前为止,我只是遇到错误。
有人可以帮助我指定S3存储桶的位置,以便我可以通过S3为站点服务吗?