Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 1.74 KB

File metadata and controls

73 lines (47 loc) · 1.74 KB
page_title cloudautomator_post_process Data Source - terraform-provider-cloudautomator
subcategory
description

cloudautomator_post_process (Data Source)

Example Usage

data "cloudautomator_post_process" "example-post-process" {
  id = 123
}

Schema

Required

  • id (String) Post-process ID

Read-Only

  • email_parameters (List of Object) "email" parameter value (see below for nested schema)
  • group_id (Number) Group ID
  • name (String) Post-process name
  • service (String) Post-process service name
  • shared_by_group (Boolean) Whether shared by groups
  • slack_parameters (List of Object) slack parameter value (see below for nested schema)
  • sqs_parameters (List of Object) SQS parameter value (see below for nested schema)
  • webhook_parameters (List of Object) webhook parameter value (see below for nested schema)

Nested Schema for email_parameters

Read-Only:

  • email_recipient (String)

Nested Schema for slack_parameters

Read-Only:

  • slack_channel_name (String)
  • slack_language (String)
  • slack_time_zone (String)

Nested Schema for sqs_parameters

Read-Only:

  • sqs_aws_account_id (Number)
  • sqs_queue (String)
  • sqs_region (String)

Nested Schema for webhook_parameters

Read-Only:

  • webhook_authorization_header (String)
  • webhook_url (String)