- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
Cloudcraft currently doesn’t offer a way to add multiple Azure accounts at once using the web interface, but you can do so via the API.
Before you begin, make sure you have the following:
You must also have the Application ID, Directory ID, Subscription ID, and Client secret for your Azure account. For help locating these values, see Connect your Azure account with Cloudcraft.
To add your Azure account to Cloudcraft, open the command line and enter the following cURL command:
curl \
--url 'https://api.cloudcraft.co/azure/account' \
--tlsv1.2 \
--proto '=https' \
--silent \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer ${API_KEY}" \
--data-raw '{"name":"AZURE_ACCOUNT_NAME","applicationId": "APPLICATION_ID","directoryId": "DIRECTORY_ID","subscriptionId": "SUBSCRIPTION_ID","clientSecret": "CLIENT_SECRET"}'
Replace _AZURE_ACCOUNT_NAME_
with the name you want the account to have in Cloudcraft and the other values with the actual values. Replace _API_KEY_
with your API key.
After you successfully add the account, you can use the same command to add additional accounts to Cloudcraft.