Skip to content

Commit 8238cbd

Browse files
authored
Merge branch 'main' into feature/acr
2 parents eabb71c + 2d52fe7 commit 8238cbd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+4647
-368
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ yarn-error.log*
2020
*tfvars*
2121

2222
.terraform.lock.hcl
23+
.env

modules/AGENTS.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,43 @@ aws/
140140
- **Negative scenarios:** Invalid inputs that should fail gracefully
141141
- **Naming collision tests:** Prevent resource conflicts
142142
- **Cross-provider consistency:** Similar test patterns across clouds
143+
- **Test Users:** Use the following test users:
144+
- **User Tom:**
145+
```json
146+
{
147+
meshIdentifier = "likvid-tom-user"
148+
username = "[email protected]"
149+
firstName = "Tom"
150+
lastName = "Livkid"
151+
152+
153+
roles = ["admin", "Workspace Owner"]
154+
}
155+
```
156+
- **User Daniela:**
157+
```json
158+
{
159+
meshIdentifier = "likvid-daniela-user"
160+
username = "[email protected]"
161+
firstName = "Daniela"
162+
lastName = "Livkid"
163+
164+
165+
roles = ["user", "Workspace Manager"]
166+
}
167+
```
168+
- **User Anna:**
169+
```json
170+
{
171+
meshIdentifier = "likvid-anna-user"
172+
username = "[email protected]"
173+
firstName = "Anna"
174+
lastName = "Livkid"
175+
176+
177+
roles = ["reader", "Workspace Member"]
178+
}
179+
```
143180

144181
**Example Test Structure:**
145182
```hcl

0 commit comments

Comments
 (0)