Skip to content

Commit ddd77eb

Browse files
committed
Merge remote-tracking branch 'origin/main' into syw-UID2-4159-token-gen-code-refactoring-UserIdentity
2 parents 3979ca4 + c7af957 commit ddd77eb

File tree

4 files changed

+2
-19
lines changed

4 files changed

+2
-19
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.uid2</groupId>
88
<artifactId>uid2-operator</artifactId>
9-
<version>5.56.31</version>
9+
<version>5.56.42</version>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

scripts/aws/syslog-ng/syslog-ng-client.conf

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@ options {
66
chain_hostnames(no);
77
};
88

9-
source s_local {
10-
system();
11-
internal();
12-
};
13-
14-
source s_dev_nitro {
15-
pipe("/dev/nitro_enclaves");
16-
};
17-
189
source s_startup_file {
1910
file("/home/start.txt");
2011
};
@@ -24,8 +15,6 @@ destination d_syslog_tcp {
2415
};
2516

2617
log {
27-
source(s_local);
28-
source(s_dev_nitro);
2918
source(s_startup_file);
3019
destination(d_syslog_tcp);
3120
};

scripts/aws/syslog-ng/syslog-ng-server.conf

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ options {
99
chain_hostnames(yes);
1010
};
1111

12-
source s_local {
13-
system();
14-
internal();
15-
};
16-
1712
source s_network {
1813
network(
1914
ip(0.0.0.0)
@@ -31,7 +26,6 @@ destination d_file {
3126
};
3227

3328
log {
34-
source(s_local);
3529
source(s_network);
3630
destination(d_file);
3731
};

scripts/azure-aks/deployment/generate-deployment-artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ if [[ $? -ne 0 ]]; then
9191
fi
9292

9393
sed --in-place \
94-
-e "s#allow_environment_variable_dropping := true#allow_environment_variable_dropping := false#g" \
9594
-e 's#{"pattern":"DEPLOYMENT_ENVIRONMENT=DEPLOYMENT_ENVIRONMENT_PLACEHOLDER","required":false,"strategy":"string"}#{"pattern":"DEPLOYMENT_ENVIRONMENT=.+","required":false,"strategy":"re2"}#g' \
9695
-e 's#{"pattern":"VAULT_NAME=VAULT_NAME_PLACEHOLDER","required":false,"strategy":"string"}#{"pattern":"VAULT_NAME=.+","required":false,"strategy":"re2"}#g' \
9796
-e 's#{"pattern":"OPERATOR_KEY_SECRET_NAME=OPERATOR_KEY_SECRET_NAME_PLACEHOLDER","required":false,"strategy":"string"}#{"pattern":"OPERATOR_KEY_SECRET_NAME=.+","required":false,"strategy":"re2"}#g' \
@@ -100,6 +99,7 @@ if [[ $? -ne 0 ]]; then
10099
echo "Failed to replace placeholders in policy file"
101100
exit 1
102101
fi
102+
cat ${INPUT_DIR}/generated.rego
103103

104104
base64 -w0 < ${INPUT_DIR}/generated.rego > ${INPUT_DIR}/generated.rego.base64
105105
if [[ $? -ne 0 ]]; then

0 commit comments

Comments
 (0)