Skip to content

Commit

Permalink
Fix semgrep 'ci.caps5-in-func-name'.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewbankkit committed Oct 25, 2023
1 parent 3a41c17 commit c8eb41f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/service/iot/domain_configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ func expandAuthorizerConfig(tfMap map[string]interface{}) *iot.AuthorizerConfig
return apiObject
}

func expandTlsConfig(tfMap map[string]interface{}) *iot.TlsConfig {
func expandTlsConfig(tfMap map[string]interface{}) *iot.TlsConfig { // nosemgrep:ci.caps5-in-func-name
if tfMap == nil {
return nil
}
Expand Down Expand Up @@ -353,7 +353,7 @@ func flattenAuthorizerConfig(apiObject *iot.AuthorizerConfig) map[string]interfa
return tfMap
}

func flattenTlsConfig(apiObject *iot.TlsConfig) map[string]interface{} {
func flattenTlsConfig(apiObject *iot.TlsConfig) map[string]interface{} { // nosemgrep:ci.caps5-in-func-name
if apiObject == nil {
return nil
}
Expand Down

0 comments on commit c8eb41f

Please sign in to comment.