providers_initial_setup
Creates, updates, deletes, gets or lists a providers_initial_setup resource.
Overview
| Name | providers_initial_setup |
| Type | Resource |
| Id | cloudflare.magic_cloud_networking.providers_initial_setup |
Fields
The following fields are returned by SELECT queries:
- list_by_account
OK.
| Name | Datatype | Description |
|---|---|---|
aws_trust_policy | string | |
azure_consent_url | string | |
integration_identity_tag | string | |
item_type | string | |
tag_cli_command | string |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | account_id, provider_id | Get initial configuration to complete Cloud Integration setup (Closed Beta). |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
provider_id | string (uuid) |
SELECT examples
- list_by_account
Get initial configuration to complete Cloud Integration setup (Closed Beta).
SELECT
aws_trust_policy,
azure_consent_url,
integration_identity_tag,
item_type,
tag_cli_command
FROM cloudflare.magic_cloud_networking.providers_initial_setup
WHERE account_id = '{{ account_id }}' -- required
AND provider_id = '{{ provider_id }}' -- required
;