Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create abc.tf #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions abc.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
resource "azurerm_postgresql_server" "example" {
name = "example-psqlserver"
location = "eastus"
resource_group_name = "main_resource_group"
administrator_login = "psqladminun"
sku_name = "GP_Gen5_4"
storage_mb = 640000
ssl_enforcement_enabled = false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cycode: Infrastructure configuration issue: 'Ensure 'Enforce SSL connection' is set to 'ENABLED' for PostgreSQL Database Server'.
Severity: High

Would you like to exclude this IaC violation from your status checks?
Tell us what to do with one of the following hashtags:

Tag Short Description
#cycode_ignore_violation_for_resource_here Applies to this resource for this violation in this request only
#cycode_iac_fix_this_violation Fix this violation via a commit to this branch
#cycode_iac_false_positive Applies to this resource for this violation for all repos in your organization
#cycode_ignore_resource_everywhere Applies to this resource for all repos in your organization
#cycode_ignore_violation_for_resource_everywhere Applies to this resource for this violation for all repos in your organization

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#cycode_ignore_violation_for_resource_here

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👎 This user is not permitted to perform actions.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👎 This user is not permitted to perform actions.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👎 This user is not permitted to perform actions.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👎 This user is not permitted to perform actions.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👎 This user is not permitted to perform actions.

version = "9.6"
geo_redundant_backup_enabled = true
}