Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4d0c721
init further azure devops services
younGihan Oct 29, 2025
bb624a5
style: formatting according to pre-commit checks
younGihan Oct 29, 2025
02c7686
feature: Azure DevOps Project service defaut configuration changed
younGihan Oct 29, 2025
cbc3adf
feature: Azure DevOps Project added further output parameters to bett…
younGihan Oct 29, 2025
15b4ac4
config: change pipeline service to handle empty variable groups
younGihan Oct 29, 2025
fe27ecb
config: added web url for pipeline service
younGihan Oct 29, 2025
05fc7b9
refactored: service connection to service connection to subscription
younGihan Oct 29, 2025
2912924
feat: added Entra service principal creation
younGihan Oct 29, 2025
93ce204
update SPN service + adding Azure VMSS service
younGihan Oct 29, 2025
83ef574
added logos
younGihan Oct 29, 2025
7c21117
update app team readme. removed azure vmss service
younGihan Oct 30, 2025
e542634
style: formatting readme files for new services
younGihan Oct 30, 2025
fee3b10
config: remove hub definition from script readme
younGihan Oct 30, 2025
4142048
update: service connection building block
younGihan Oct 30, 2025
7a22fd5
config: creating service credentials is now optional for the SPN buil…
younGihan Oct 30, 2025
c8b6264
fixed: test file now in working state
younGihan Oct 30, 2025
665a724
fixed: improved test file
younGihan Oct 30, 2025
e8deba8
config: added typical User variable from meshStack with example users
younGihan Oct 30, 2025
c53ffde
fixed test cases
younGihan Oct 30, 2025
4deb7ab
fixed test cases
younGihan Oct 30, 2025
b4b61b4
formatting
younGihan Oct 30, 2025
fbd0753
style: formatting tf files and docs accordingly
younGihan Oct 30, 2025
c35bd49
fix: update docs and versions for tf provider
younGihan Oct 31, 2025
19732ed
fix: update docs and versions for tf provider
younGihan Oct 31, 2025
8c89bce
Merge remote-tracking branch 'origin/feature/additional-devops-servic…
younGihan Oct 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ yarn-error.log*
.angular/

.terraform
.terraform.lock.hcl
.terraform.lock.hcl
.env
37 changes: 37 additions & 0 deletions modules/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,43 @@ aws/
- **Negative scenarios:** Invalid inputs that should fail gracefully
- **Naming collision tests:** Prevent resource conflicts
- **Cross-provider consistency:** Similar test patterns across clouds
- **Test Users:** Use the following test users:
- **User Tom:**
```json
{
meshIdentifier = "likvid-tom-user"
username = "[email protected]"
firstName = "Tom"
lastName = "Livkid"
email = "[email protected]"
euid = "[email protected]"
roles = ["admin", "Workspace Owner"]
}
```
- **User Daniela:**
```json
{
meshIdentifier = "likvid-daniela-user"
username = "[email protected]"
firstName = "Daniela"
lastName = "Livkid"
email = "[email protected]"
euid = "[email protected]"
roles = ["user", "Workspace Manager"]
}
```
- **User Anna:**
```json
{
meshIdentifier = "likvid-anna-user"
username = "[email protected]"
firstName = "Anna"
lastName = "Livkid"
email = "[email protected]"
euid = "[email protected]"
roles = ["reader", "Workspace Member"]
}
```

**Example Test Structure:**
```hcl
Expand Down
Loading
Loading