@@ -41,46 +41,45 @@ public List<ModuleRequirement> checkRequirements(Long serverId) throws Exception
4141 public List <ModuleConfigurationKey > getConfigurationKeys (Long groupId ) throws Exception {
4242 List <ModuleConfigurationKey > keys = new ArrayList <>();
4343
44- // workspaceId
44+ // eventHubConnection
4545 keys .add (ModuleConfigurationKey .builder ()
46- .withGroupId (groupId )
47- .withConfKey ("workspaceId " )
48- .withConfName ("Workspace ID " )
49- .withConfDescription ("Azure Log Analytics Workspace ID " )
50- .withConfDataType ("text" )
51- .withConfRequired (true )
52- .build ());
46+ .withGroupId (groupId )
47+ .withConfKey ("eventHubConnection " )
48+ .withConfName ("Event Hub Shared access policies - Connection string " )
49+ .withConfDescription ("Configure the event hub connection " )
50+ .withConfDataType ("text" )
51+ .withConfRequired (true )
52+ .build ());
5353
54- // clientId
54+ // consumerGroup
5555 keys .add (ModuleConfigurationKey .builder ()
56- .withGroupId (groupId )
57- .withConfKey ("clientId " )
58- .withConfName ("Application (client) ID " )
59- .withConfDescription ("Azure AD Application (client) ID " )
60- .withConfDataType ("text" )
61- .withConfRequired (true )
62- .build ());
56+ .withGroupId (groupId )
57+ .withConfKey ("consumerGroup " )
58+ .withConfName ("Consumer Group Name " )
59+ .withConfDescription ("Configure the consumer group " )
60+ .withConfDataType ("text" )
61+ .withConfRequired (true )
62+ .build ());
6363
64- // tenantId
64+ // storageContainer
6565 keys .add (ModuleConfigurationKey .builder ()
66- .withGroupId (groupId )
67- .withConfKey ("tenantId " )
68- .withConfName ("Directory (tenant) ID " )
69- .withConfDescription ("Azure Active Directory (tenant) ID " )
70- .withConfDataType ("text" )
71- .withConfRequired (true )
72- .build ());
66+ .withGroupId (groupId )
67+ .withConfKey ("storageContainer " )
68+ .withConfName ("Storage Container Name " )
69+ .withConfDescription ("Configure the storage container " )
70+ .withConfDataType ("text" )
71+ .withConfRequired (true )
72+ .build ());
7373
74- // clientSecret
74+ // storageConnection
7575 keys .add (ModuleConfigurationKey .builder ()
76- .withGroupId (groupId )
77- .withConfKey ("clientSecret" )
78- .withConfName ("Client Secret Value" )
79- .withConfDescription ("Azure AD Application Client Secret" )
80- .withConfDataType ("text" )
81- .withConfRequired (true )
82- .build ());
83-
76+ .withGroupId (groupId )
77+ .withConfKey ("storageConnection" )
78+ .withConfName ("Storage account connection string with key" )
79+ .withConfDescription ("Configure the storage connection" )
80+ .withConfDataType ("text" )
81+ .withConfRequired (true )
82+ .build ());
8483 return keys ;
8584 }
8685}
0 commit comments