Skip to content

Commit

Permalink
rebase and run just update-golden
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisJasso committed Apr 19, 2024
1 parent 1f67bc8 commit 20fa3f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions tfrender/testdata/TestRenderOpsgenieSample.golden.tf
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ resource "firehydrant_team" "krista_test_team" {
resource "firehydrant_on_call_schedule" "customer_success_customer_success_schedule_rot1" {
name = "Customer Success_schedule - Rot1"
description = "(Rot1)"
team_id = resource.firehydrant_team.customer_success.id
team_id = firehydrant_team.customer_success.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.cweber.id]
Expand All @@ -233,7 +233,7 @@ resource "firehydrant_on_call_schedule" "customer_success_customer_success_sched
resource "firehydrant_on_call_schedule" "chris_test_team_chris_test_team_schedule_rot1" {
name = "Chris Test Team_schedule - Rot1"
description = "(Rot1)"
team_id = resource.firehydrant_team.chris_test_team.id
team_id = firehydrant_team.chris_test_team.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.cweber.id]
Expand All @@ -248,7 +248,7 @@ resource "firehydrant_on_call_schedule" "chris_test_team_chris_test_team_schedul
resource "firehydrant_on_call_schedule" "vinny_test_team_vinny_test_team_schedule_first" {
name = "Vinny Test Team_schedule - First"
description = "(First)"
team_id = resource.firehydrant_team.vinny_test_team.id
team_id = firehydrant_team.vinny_test_team.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.vthanh.id]
Expand All @@ -262,7 +262,7 @@ resource "firehydrant_on_call_schedule" "vinny_test_team_vinny_test_team_schedul
resource "firehydrant_on_call_schedule" "aj_team_aj_team_schedule_daytime_rotation" {
name = "AJ Team_schedule - Daytime rotation"
description = "(Daytime rotation)"
team_id = resource.firehydrant_team.aj_team.id
team_id = firehydrant_team.aj_team.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.ajasso.id, data.firehydrant_user.abakhtiari.id, data.firehydrant_user.cweber.id, data.firehydrant_user.akoenigbautista.id]
Expand Down Expand Up @@ -312,7 +312,7 @@ resource "firehydrant_on_call_schedule" "aj_team_aj_team_schedule_daytime_rotati
resource "firehydrant_on_call_schedule" "aj_team_aj_team_schedule_nighttime_rotation" {
name = "AJ Team_schedule - Nighttime rotation"
description = "(Nighttime rotation)"
team_id = resource.firehydrant_team.aj_team.id
team_id = firehydrant_team.aj_team.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.ajasso.id, data.firehydrant_user.abakhtiari.id, data.firehydrant_user.cweber.id, data.firehydrant_user.akoenigbautista.id]
Expand Down Expand Up @@ -375,7 +375,7 @@ resource "firehydrant_on_call_schedule" "aj_team_aj_team_schedule_nighttime_rota
resource "firehydrant_on_call_schedule" "noodlebrigade_noodlebrigade_schedule_rot1" {
name = "noodlebrigade_schedule - Rot1"
description = "(Rot1)"
team_id = resource.firehydrant_team.noodlebrigade.id
team_id = firehydrant_team.noodlebrigade.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.breese.id]
Expand All @@ -390,7 +390,7 @@ resource "firehydrant_on_call_schedule" "noodlebrigade_noodlebrigade_schedule_ro
resource "firehydrant_on_call_schedule" "krista_test_team_krista_test_team_schedule_rot1" {
name = "krista-test-team_schedule - Rot1"
description = "(Rot1)"
team_id = resource.firehydrant_team.krista_test_team.id
team_id = firehydrant_team.krista_test_team.id
time_zone = "America/Los_Angeles"

member_ids = [data.firehydrant_user.abakhtiari.id]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
firehydrant = {
source = "firehydrant/firehydrant"
version = ">= 0.7.1"
version = ">= 0.8.0"
}
}
}
Expand Down

0 comments on commit 20fa3f6

Please sign in to comment.