Skip to main content

โญ Repository โ†’ ๐Ÿ“ Compliance Engine โ†’ ๐Ÿ“ CloudAware โ†’ ๐Ÿ“ Google โ†’ ๐Ÿ“ GCE โ†’ ๐Ÿ›ก๏ธ Instance is idle๐ŸŸข

๐Ÿง  Google GCE Instance is idle - prod.logic.yaml๐ŸŸข

Usesโ€‹

Test Results ๐ŸŸขโ€‹

Generated at: 2025-10-01T12:50:05.549342603Z Open

ResultIdCondition IndexCondition TextRuntime Error
๐ŸŸขtest1โœ”๏ธ 99โœ”๏ธ isDisappeared(CA10__disappearanceTime__c)โœ”๏ธ null
๐ŸŸขtest2โœ”๏ธ 199โœ”๏ธ extract('CA10__status__c') != 'RUNNING'โœ”๏ธ null
๐ŸŸขtest3โœ”๏ธ 299โœ”๏ธ extract('CA10__creationDate__c').withinLastDays(14)โœ”๏ธ null
๐ŸŸขtest4โœ”๏ธ 399โœ”๏ธ extract('CA10__averageCpuTwoWeeks__c').isEmpty() || extract('CA10__maxCpuTwoWeeks__c').isEmpty() || extract('CA10__sumTwoWeekNetworkInMb__c').isEmpty() || extract('CA10__sumTwoWeekNetworkOutMb__c').isEmpty()โœ”๏ธ null
๐ŸŸขtest5โœ”๏ธ 499โœ”๏ธ extract('CA10__averageCpuTwoWeeks__c') < number(5.0) && extract('CA10__maxCpuTwoWeeks__c') < number(15.0) && extract('CA10__sumTwoWeekNetworkInMb__c') < number(100.0) && extract('CA10__sumTwoWeekNetworkOutMb__c') < number(100.0)โœ”๏ธ null
๐ŸŸขtest6โœ”๏ธ 500โœ”๏ธ otherwiseโœ”๏ธ null

Generation Bundleโ€‹

FileMD5
Open/ce/ca/google/compute-engine/instance-idle/policy.yamlFA622D74A738DF6026B880186FE2B772
Open/ce/ca/google/compute-engine/instance-idle/prod.logic.yamlB0C08311A48208852E0CB98436831A0E
Open/ce/ca/google/compute-engine/instance-idle/test-data.jsonB893B4E5E475E444F1E02BE2FE3F8585
Open/types/CA10__CaGoogleGceInstance__c/object.extracts.yaml75A538D7EA49443F6DA07C5D35BF9021

Available Commandsโ€‹

repo-manager policies generate FULL /ce/ca/google/compute-engine/instance-idle/prod.logic.yaml
repo-manager policies generate DEBUG /ce/ca/google/compute-engine/instance-idle/prod.logic.yaml
repo-manager policies generate CAPTURE_TEST_DATA /ce/ca/google/compute-engine/instance-idle/prod.logic.yaml
repo-manager policies generate TESTS /ce/ca/google/compute-engine/instance-idle/prod.logic.yaml
# Execute tests
repo-manager policies test /ce/ca/google/compute-engine/instance-idle/prod.logic.yaml

Contentโ€‹

Open File

---
inputType: "CA10__CaGoogleGceInstance__c"
importExtracts:
- file: "/types/CA10__CaGoogleGceInstance__c/object.extracts.yaml"
testData:
- file: 'test-data.json'
conditions:
- status: "INAPPLICABLE"
currentStateMessage: "The Instance is not running."
check:
NOT_EQUAL:
left:
EXTRACT: "CA10__status__c"
right:
TEXT: "RUNNING"
- status: "INAPPLICABLE"
currentStateMessage: "The instance has been running for less than 14 days."
check:
IS_WITHIN_LAST_DAYS:
offsetDays: 14
arg:
EXTRACT: "CA10__creationDate__c"
- status: "UNDETERMINED"
currentStateMessage: "There is not enough data in the CMDB to identify if the instance is idle."
check:
OR:
args:
- IS_EMPTY:
arg:
EXTRACT: "CA10__averageCpuTwoWeeks__c"
- IS_EMPTY:
arg:
EXTRACT: "CA10__maxCpuTwoWeeks__c"
- IS_EMPTY:
arg:
EXTRACT: "CA10__sumTwoWeekNetworkInMb__c"
- IS_EMPTY:
arg:
EXTRACT: "CA10__sumTwoWeekNetworkOutMb__c"
- status: INCOMPLIANT
currentStateMessage: "The instance is idle with Average CPU Utilization < 5%,\
\ Max CPU Utilization < 15%, and Average Network I/O < 100 MB."
remediationMessage: "Consider stopping, terminating, or rightsizing the instance."
check:
AND:
args:
- LESS_THAN:
left:
EXTRACT: CA10__averageCpuTwoWeeks__c
right:
NUMBER: 5.0
- LESS_THAN:
left:
EXTRACT: CA10__maxCpuTwoWeeks__c
right:
NUMBER: 15.0
- LESS_THAN:
left:
EXTRACT: CA10__sumTwoWeekNetworkInMb__c
right:
NUMBER: 100.0
- LESS_THAN:
left:
EXTRACT: CA10__sumTwoWeekNetworkOutMb__c
right:
NUMBER: 100.0
otherwise:
status: "COMPLIANT"
currentStateMessage: "The instance is not idle."