0
0
llucycodes42
In the above code, the pagerduty_team resource defines a name for the team ("myResourceName"), a description for the team ("my-description-${myResourceName}"), and a set of attributes for the team.
Shortcut: tf_pagerduty_team
resource "pagerduty_team" "${myResourceName}" {
name = "my-${myResourceName}"
description = "my-description-${myResourceName}"
}