Skip to content

Commit

Permalink
Fixed param in test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr committed Oct 3, 2024
1 parent bea4f7e commit ff0da5c
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 26 deletions.
24 changes: 16 additions & 8 deletions avm/res/key-vault/vault/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,10 @@ module vault 'br/public:avm/res/key-vault/vault:<version>' = {
enableRbacAuthorization: false
keys: [
{
attributesExp: 1725109032
attributesNbf: 10000
attributes: {
exp: 1725109032
nbf: 10000
}
name: 'keyName'
roleAssignments: [
{
Expand Down Expand Up @@ -427,8 +429,10 @@ module vault 'br/public:avm/res/key-vault/vault:<version>' = {
]
secrets: [
{
attributesExp: 1702648632
attributesNbf: 10000
attributes: {
exp: 1725109032
nbf: 10000
}
contentType: 'Something'
name: 'secretName'
roleAssignments: [
Expand Down Expand Up @@ -540,8 +544,10 @@ module vault 'br/public:avm/res/key-vault/vault:<version>' = {
"keys": {
"value": [
{
"attributesExp": 1725109032,
"attributesNbf": 10000,
"attributes": {
"exp": 1725109032,
"nbf": 10000
},
"name": "keyName",
"roleAssignments": [
{
Expand Down Expand Up @@ -695,8 +701,10 @@ module vault 'br/public:avm/res/key-vault/vault:<version>' = {
"secrets": {
"value": [
{
"attributesExp": 1702648632,
"attributesNbf": 10000,
"attributes": {
"exp": 1725109032,
"nbf": 10000
},
"contentType": "Something",
"name": "secretName",
"roleAssignments": [
Expand Down
4 changes: 2 additions & 2 deletions avm/res/key-vault/vault/access-policy/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "7494731697751039419"
"version": "0.30.23.60470",
"templateHash": "15469258025112973480"
},
"name": "Key Vault Access Policies",
"description": "This module deploys a Key Vault Access Policy.",
Expand Down
4 changes: 2 additions & 2 deletions avm/res/key-vault/vault/key/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "14269695922191217406"
"version": "0.30.23.60470",
"templateHash": "1574167538812101372"
},
"name": "Key Vault Keys",
"description": "This module deploys a Key Vault Key.",
Expand Down
16 changes: 8 additions & 8 deletions avm/res/key-vault/vault/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "8938543730613882040"
"version": "0.30.23.60470",
"templateHash": "48581495890499540"
},
"name": "Key Vaults",
"description": "This module deploys a Key Vault.",
Expand Down Expand Up @@ -1224,8 +1224,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "7494731697751039419"
"version": "0.30.23.60470",
"templateHash": "15469258025112973480"
},
"name": "Key Vault Access Policies",
"description": "This module deploys a Key Vault Access Policy.",
Expand Down Expand Up @@ -1493,8 +1493,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "114626909766354577"
"version": "0.30.23.60470",
"templateHash": "10121697157844029321"
},
"name": "Key Vault Secrets",
"description": "This module deploys a Key Vault Secret.",
Expand Down Expand Up @@ -1791,8 +1791,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "14269695922191217406"
"version": "0.30.23.60470",
"templateHash": "1574167538812101372"
},
"name": "Key Vault Keys",
"description": "This module deploys a Key Vault Key.",
Expand Down
4 changes: 2 additions & 2 deletions avm/res/key-vault/vault/secret/main.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"metadata": {
"_generator": {
"name": "bicep",
"version": "0.29.47.4906",
"templateHash": "114626909766354577"
"version": "0.30.23.60470",
"templateHash": "10121697157844029321"
},
"name": "Key Vault Secrets",
"description": "This module deploys a Key Vault Secret.",
Expand Down
12 changes: 8 additions & 4 deletions avm/res/key-vault/vault/tests/e2e/max/main.test.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,10 @@ module testDeployment '../../../main.bicep' = [
enableRbacAuthorization: false
keys: [
{
attributesExp: 1725109032
attributesNbf: 10000
attributes: {
exp: 1725109032
nbf: 10000
}
name: 'keyName'
roleAssignments: [
{
Expand Down Expand Up @@ -274,8 +276,10 @@ module testDeployment '../../../main.bicep' = [
]
secrets: [
{
attributesExp: 1702648632
attributesNbf: 10000
attributes: {
exp: 1725109032
nbf: 10000
}
contentType: 'Something'
name: 'secretName'
roleAssignments: [
Expand Down

0 comments on commit ff0da5c

Please sign in to comment.