Skip to content

Latest commit

 

History

History
82 lines (55 loc) · 2.24 KB

File metadata and controls

82 lines (55 loc) · 2.24 KB
page_title cloudautomator_post_process Resource - terraform-provider-cloudautomator
subcategory
description Manage Cloud Automator post-process resources

cloudautomator_post_process (Resource)

Manage Cloud Automator post-process resources

Example Usage

resource "cloudautomator_post_process" "example-email-post-process" {
  name     = "example-email-post-process"
  group_id = 10
  service  = "email"

  email_parameters {
    email_recipient = "test@example.com"
  }
}

Schema

Required

  • name (String) Post-process name
  • service (String) Post-process service name

Optional

Read-Only

  • id (String) Post-process ID

Nested Schema for email_parameters

Required:

  • email_recipient (String) Email Address

Nested Schema for slack_parameters

Required:

  • slack_channel_name (String) Slack Channel Name
  • slack_language (String) Language of notification content
  • slack_time_zone (String) Time zone

Nested Schema for sqs_parameters

Required:

  • sqs_aws_account_id (Number) ID of the AWS account used to search the SQS queue
  • sqs_queue (String) SQS queue name
  • sqs_region (String) Region name where the SQS queue resides

Nested Schema for webhook_parameters

Required:

  • webhook_authorization_header (String) Authorization header value
  • webhook_url (String) URL of the Webhook destination