Skip to content

Commit

Permalink
fix field name
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartakusMd committed Jul 8, 2024
1 parent b485ef0 commit 4756d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/containerapps/helpers/container_apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -1973,7 +1973,7 @@ func expandContainerAppReadinessProbe(input ContainerAppReadinessProbe) containe
func flattenContainerAppReadinessProbe(input containerapps.ContainerAppProbe) []ContainerAppReadinessProbe {
result := make([]ContainerAppReadinessProbe, 0)
probe := ContainerAppReadinessProbe{
InitialDelay: pointer.From(input.InitialDelay),
InitialDelay: pointer.From(input.InitialDelaySeconds),
Interval: pointer.From(input.PeriodSeconds),
Timeout: pointer.From(input.TimeoutSeconds),
FailureThreshold: pointer.From(input.FailureThreshold),
Expand Down

0 comments on commit 4756d4e

Please sign in to comment.