Resource: aws_scheduler_schedule_group

Provides an EventBridge Scheduler Schedule Group resource.

You can find out more about EventBridge Scheduler in the User Guide.

Example Usage

resource "aws_scheduler_schedule_group" "example" {
  name = "my-schedule-group"
}

Argument Reference

The following arguments are optional:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Timeouts

Configuration options:

Import

In Terraform v1.5.0 and later, use an import block to import schedule groups using the name. For example:

import {
  to = aws_scheduler_schedule_group.example
  id = "my-schedule-group"
}

Using terraform import, import schedule groups using the name. For example:

% terraform import aws_scheduler_schedule_group.example my-schedule-group