You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backtic characters are being parsed incorrectly around code blocks from the documentation.
Current Behavior
Given the JSON string
"Checks if active IAM access keys are rotated (changed) within the number of days specified in`maxAccessKeyAge`. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The result in HCL looks like this
"Checks if active IAM access keys are rotated (changed) within the number of days specified in maxAccessKeyAge . The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The backtic () character is being replaced by a whitespace character at the end of the maxAccessKeyAge` word.
Expected Behavior
Given the JSON string
"Checks if active IAM access keys are rotated (changed) within the number of days specified in`maxAccessKeyAge`. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The result in HCLshould look like this
"Checks if active IAM access keys are rotated (changed) within the number of days specified in maxAccessKeyAge. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The text was updated successfully, but these errors were encountered:
Backtic characters are being parsed incorrectly around code blocks from the documentation.
Current Behavior
Given the JSON string
"Checks if active IAM access keys are rotated (changed) within the number of days specified in`maxAccessKeyAge`. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The result in HCL looks like this
"Checks if active IAM access keys are rotated (changed) within the number of days specified in maxAccessKeyAge . The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The backtic (
) character is being replaced by a whitespace character at the end of the
maxAccessKeyAge` word.Expected Behavior
Given the JSON string
"Checks if active IAM access keys are rotated (changed) within the number of days specified in`maxAccessKeyAge`. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The result in HCLshould look like this
"Checks if active IAM access keys are rotated (changed) within the number of days specified in maxAccessKeyAge. The rule is NON_COMPLIANT if access keys are not rotated within the specified time period. The default value is 90 days."
The text was updated successfully, but these errors were encountered: