内容へ移動
Cat Paw Software
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
•
rvm
•
php
•
ios
•
markup
•
cloudlogging
aws:s3
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== s3 ====== ===== バケットポリシー ===== vpcと社内からのオブジェクト取得を許可する例 <code> { "Version": "hogehoge", "Statement": [ { "Sid": "AllowFromOffice", "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::${bucket_name}/*", "Condition": { "IpAddress": { "aws:SourceIp": [ "192.0.2.0/24", ] } } }, { "Sid": "AllowFromVpc", "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": [ "arn:aws:s3:::${bucket_name}/*" ], "Condition": { "StringEquals": { "aws:sourceVpce": "${vpc_endpoint_id}" } } } ] } </code>
aws/s3.txt
· 最終更新: 2018/11/05 03:17 by
nullpon
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ