getsops / getsops/sops

path_regex doesn't normalize paths with filepath.ToSlash

Open
#1,036 1 comment 5 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Go
Stars
23.1k
Forks
1.1k
Avg merge
1d 11h
Merged PRs (30d)
9

Description

Currently to support path_regexes that should work on windows and other systems you need to manually handle the different separators with (/|\\) like this.

- path_regex: staging(/|\\).*\.secret\.(yaml|json)$
  gcp_kms: projects/.../sops-key-staging

This is a bit cumbersome and a bit error prone to use and would be nicer if we could just use slashes like this:

- path_regex: staging/.*\.secret\.(yaml|json)$
  gcp_kms: projects/.../sops-key-staging

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by locating the code that evaluates path_regex and checking how paths are passed to matching; the issue specifically points to filepath.ToSlash as the relevant Go behavior. Done means a pattern using forward slashes matches equivalent paths on Windows and other systems without requiring (/|\).

Written by the indexing model from the issue text.

Assessment

Tech stack
go
Domain
cli, security
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
42/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.