Skip to content
Snippets Groups Projects
policy.rego 139 B
Newer Older
  • Learn to ignore specific revisions
  • Yordan Kinkov's avatar
    Yordan Kinkov committed
    package example.cacheGetByKey
    
    default buy = false
    
    currentPrice := cache.get(input.key, "", "").currentPrice
    buy {
      currentPrice < 100
    }