File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
internal/services/containerapps/helpers Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -499,6 +499,9 @@ func expandContainerAppJobVolumes(input []ContainerVolume) *[]jobs.Volume {
499499 storageType := jobs .StorageType (v .StorageType )
500500 volume .StorageType = & storageType
501501 }
502+ if v .MountOptions != "" {
503+ volume .MountOptions = pointer .To (v .MountOptions )
504+ }
502505 volumes = append (volumes , volume )
503506 }
504507
@@ -839,6 +842,9 @@ func flattenContainerAppJobVolumes(input *[]jobs.Volume) []ContainerVolume {
839842 if v .StorageType != nil {
840843 containerVolume .StorageType = string (* v .StorageType )
841844 }
845+ if v .MountOptions != nil {
846+ containerVolume .MountOptions = pointer .From (v .MountOptions )
847+ }
842848
843849 result = append (result , containerVolume )
844850 }
You can’t perform that action at this time.
0 commit comments