Skip to content

Commit a4ea715

Browse files
authored
Merge pull request #57 from ansible-lockdown/aug23_issues
Aug23 issues
2 parents 43a2b13 + 8153344 commit a4ea715

26 files changed

+532
-452
lines changed

.ansible-lint

+3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1+
---
2+
13
parseable: true
24
quiet: true
35
skip_list:
46
- 'schema'
57
- 'no-changed-when'
68
- 'var-spacing'
9+
- 'fqcn-builtins'
710
- 'experimental'
811
- 'name[play]'
912
- 'name[casing]'

.config/.secrets.baseline

+168
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
1+
{
2+
"version": "1.4.0",
3+
"plugins_used": [
4+
{
5+
"name": "ArtifactoryDetector"
6+
},
7+
{
8+
"name": "AWSKeyDetector"
9+
},
10+
{
11+
"name": "AzureStorageKeyDetector"
12+
},
13+
{
14+
"name": "Base64HighEntropyString",
15+
"limit": 4.5
16+
},
17+
{
18+
"name": "BasicAuthDetector"
19+
},
20+
{
21+
"name": "CloudantDetector"
22+
},
23+
{
24+
"name": "DiscordBotTokenDetector"
25+
},
26+
{
27+
"name": "GitHubTokenDetector"
28+
},
29+
{
30+
"name": "HexHighEntropyString",
31+
"limit": 3.0
32+
},
33+
{
34+
"name": "IbmCloudIamDetector"
35+
},
36+
{
37+
"name": "IbmCosHmacDetector"
38+
},
39+
{
40+
"name": "JwtTokenDetector"
41+
},
42+
{
43+
"name": "KeywordDetector",
44+
"keyword_exclude": ""
45+
},
46+
{
47+
"name": "MailchimpDetector"
48+
},
49+
{
50+
"name": "NpmDetector"
51+
},
52+
{
53+
"name": "PrivateKeyDetector"
54+
},
55+
{
56+
"name": "SendGridDetector"
57+
},
58+
{
59+
"name": "SlackDetector"
60+
},
61+
{
62+
"name": "SoftlayerDetector"
63+
},
64+
{
65+
"name": "SquareOAuthDetector"
66+
},
67+
{
68+
"name": "StripeDetector"
69+
},
70+
{
71+
"name": "TwilioKeyDetector"
72+
}
73+
],
74+
"filters_used": [
75+
{
76+
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
77+
},
78+
{
79+
"path": "detect_secrets.filters.common.is_baseline_file",
80+
"filename": ".config/.secrets.baseline"
81+
},
82+
{
83+
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
84+
"min_level": 2
85+
},
86+
{
87+
"path": "detect_secrets.filters.heuristic.is_indirect_reference"
88+
},
89+
{
90+
"path": "detect_secrets.filters.heuristic.is_likely_id_string"
91+
},
92+
{
93+
"path": "detect_secrets.filters.heuristic.is_lock_file"
94+
},
95+
{
96+
"path": "detect_secrets.filters.heuristic.is_not_alphanumeric_string"
97+
},
98+
{
99+
"path": "detect_secrets.filters.heuristic.is_potential_uuid"
100+
},
101+
{
102+
"path": "detect_secrets.filters.heuristic.is_prefixed_with_dollar_sign"
103+
},
104+
{
105+
"path": "detect_secrets.filters.heuristic.is_sequential_string"
106+
},
107+
{
108+
"path": "detect_secrets.filters.heuristic.is_swagger_file"
109+
},
110+
{
111+
"path": "detect_secrets.filters.heuristic.is_templated_secret"
112+
},
113+
{
114+
"path": "detect_secrets.filters.regex.should_exclude_file",
115+
"pattern": [
116+
".config/.gitleaks-report.json"
117+
]
118+
}
119+
],
120+
"results": {
121+
"defaults/main.yml": [
122+
{
123+
"type": "Secret Keyword",
124+
"filename": "defaults/main.yml",
125+
"hashed_secret": "64411efd0f0561fe4852c6e414071345c9c6432a",
126+
"is_verified": false,
127+
"line_number": 454,
128+
"is_secret": false
129+
},
130+
{
131+
"type": "Secret Keyword",
132+
"filename": "defaults/main.yml",
133+
"hashed_secret": "62d080aa835d5cde69e3162f928472a204769a63",
134+
"is_verified": false,
135+
"line_number": 641,
136+
"is_secret": false
137+
}
138+
],
139+
"tasks/main.yml": [
140+
{
141+
"type": "Secret Keyword",
142+
"filename": "tasks/main.yml",
143+
"hashed_secret": "d042db4b269513126cd2a41f7e62a0a23cdb91dc",
144+
"is_verified": false,
145+
"line_number": 48,
146+
"is_secret": false
147+
},
148+
{
149+
"type": "Secret Keyword",
150+
"filename": "tasks/main.yml",
151+
"hashed_secret": "64411efd0f0561fe4852c6e414071345c9c6432a",
152+
"is_verified": false,
153+
"line_number": 57,
154+
"is_secret": false
155+
}
156+
],
157+
"tasks/parse_etc_password.yml": [
158+
{
159+
"type": "Secret Keyword",
160+
"filename": "tasks/parse_etc_password.yml",
161+
"hashed_secret": "2aaf9f2a51d8fe89e48cb9cc7d04a991ceb7f360",
162+
"is_verified": false,
163+
"line_number": 19
164+
}
165+
]
166+
},
167+
"generated_at": "2023-08-09T10:22:53Z"
168+
}

.github/ISSUE_TEMPLATE/bug_report.md

-32
This file was deleted.

.github/ISSUE_TEMPLATE/feature-request-or-enhancement.md

-21
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

-17
This file was deleted.

.github/pull_request_template.md

-11
This file was deleted.

.github/workflows/OS.tfvars

-9
This file was deleted.

0 commit comments

Comments
 (0)