Skip to content

Commit

Permalink
Merge pull request #561 from overmindtech/fixed-blast-radius-hosted-zone
Browse files Browse the repository at this point in the history
Fixed blast radius logic
  • Loading branch information
dylanratcliffe authored Aug 2, 2024
2 parents 540402a + 1d0a07c commit ace93a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sources/route53/hosted_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ func hostedZoneItemMapper(scope string, awsItem *types.HostedZone) (*sdp.Item, e
},
BlastPropagation: &sdp.BlastPropagation{
// Changing the hosted zone can affect the resource record set
In: true,
Out: true,
// The resource record set won't affect the hosted zone
Out: false,
In: false,
},
},
},
Expand Down

0 comments on commit ace93a4

Please sign in to comment.