- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
",t};e.buildCustomizationMenuUi=t;function n(e){let t='
",t}function s(e){let n=e.filter.currentValue||e.filter.defaultValue,t='${e.filter.label}
`,e.filter.options.forEach(s=>{let o=s.id===n;t+=``}),t+="${e.filter.label}
`,t+=`This guide covers how to configure your AWS account for CloudPrem. For ingress configuration, see CloudPrem Ingress Configuration.
To deploy CloudPrem on AWS, you need to configure:
When starting a node, CloudPrem attempts to find AWS credentials using the credential provider chain implemented by rusoto_core::ChainProvider and looks for credentials in this order:
AWS_ACCESS_KEY_ID
, AWS_SECRET_ACCESS_KEY
, or AWS_SESSION_TOKEN
(optional).~/.aws/credentials
or otherwise specified by the AWS_SHARED_CREDENTIALS_FILE
and AWS_PROFILE
environment variables if set and not empty.AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
is set.An error is returned if no credentials are found in the chain.
CloudPrem attempts to find the AWS region from multiple sources, using the following order of precedence:
AWS_REGION
, then AWS_DEFAULT_REGION
.~/.aws/config
, or at the path specified by the AWS_CONFIG_FILE
environment variable (if set and not empty).us-east-1
if no other source provides a region.Required authorized actions:
ListBucket
(on the bucket directly)GetObject
PutObject
DeleteObject
ListMultipartUploadParts
AbortMultipartUpload
Here is an example of a bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::my-bucket"
]
},
{
"Effect": "Allow",
"Action": [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject",
"s3:ListMultipartUploadParts",
"s3:AbortMultipartUpload"
],
"Resource": [
"arn:aws:s3:::my-bucket/*"
]
}
]
}
추가 유용한 문서, 링크 및 기사: