user

hazelops/user/pagerduty

Terraform Module HCL PAGERDUTY
Install
module "user" {
source = "hazelops/user/pagerduty"
version = "1.0.4"
}
plain text: /constructs/tfmod-hazelops-user-pagerduty/install.txt
⭐ Source on GitHub 📦 Registry page
README

Terraform Pagerduty User Terraform module that creates user in Pagerduty Description This module provides settings: - Create user in Pagerduty Usage Miminal setup ``hcl provider "pagerduty" { token = "Pagerduty_Token" } module "pagerduty_user" { source = "git@github.com:hazelops/terraform-pagerduty-user.git" email = " " mobile = "1234567890" name = " " } ` Full setup `hcl provider "pagerduty" { token = "Pagerduty_Token" } module "pagerduty_user" { source = "git@github.com:hazelops/terraform-pagerduty-user.git" enabled = true job_title = "Engineer" email = " " mobile_country_code = "+1" mobile = "1234567890" name = " " role = "user" start_delay_in_minutes_email = 1 start_delay_in_minutes_phone = 1 start_delay_in_minutes_sms = 10 } ` Requirements No requirements. Providers | Name | Version |

Inputs (10)
NameTypeDescriptionDefault
namestringThe name of the user. required
mobilestringThe 'mobile' to deliver to phone number. required
emailstringThe user's main email address. required
rolestringAccount must have the 'read_only_users' ability to set a user as a 'read_only_us"user"
job_titlestringThe user's title."Engineer"
start_delay_in_minutes_emailstringThe delay before firing the rule, in minutes.1
start_delay_in_minutes_smsstringThe delay before firing the rule, in minutes.10
enabledboolGives ability to enable or disable a moduletrue
mobile_country_codestringThe 1-to-3 digit country calling code. Required when using 'phone_contact_method"+1"
start_delay_in_minutes_phonestringThe delay before firing the rule, in minutes.1
Outputs (1)
id
Resources (3)
pagerduty_userpagerduty_user_contact_methodpagerduty_user_notification_rule
Details
FrameworkTerraform Module
LanguageHCL
Version1.0.4
Cloud PAGERDUTY
★ Stars0
Forks5
Total downloads877
Inputs10
Outputs1
Resources3
LicenseMIT
Namespacehazelops
Updated