File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ func (cmd *VolumeDetailCommand) Run(args []string) error {
137137 table .Add (T ("Notes" ), decodedValue )
138138 hasEncryption := T ("False" )
139139 if (blockVolume .HasEncryptionAtRest != nil && * blockVolume .HasEncryptionAtRest == true ) {
140- hasEncryption : = T ("True" )
140+ hasEncryption = T ("True" )
141141 }
142142 table .Add (T ("Encrypted" ), hasEncryption )
143143 table .Print ()
Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ func (cmd *VolumeDetailCommand) Run(args []string) error {
137137 }
138138 table .Add (T ("Notes" ), decodedValue )
139139 hasEncryption := T ("False" )
140- if (blockVolume .HasEncryptionAtRest != nil && * blockVolume .HasEncryptionAtRest == true ) {
141- hasEncryption : = T ("True" )
140+ if (fileVolume .HasEncryptionAtRest != nil && * fileVolume .HasEncryptionAtRest == true ) {
141+ hasEncryption = T ("True" )
142142 }
143143 table .Add (T ("Encrypted" ), hasEncryption )
144144 table .Print ()
You can’t perform that action at this time.
0 commit comments