Skip to content

Commit

Permalink
Movendo schemaProcessor/string para schemaProcessor/string/v0/validator
Browse files Browse the repository at this point in the history
  • Loading branch information
daltonmatos committed Oct 30, 2024
1 parent ff9919a commit 76fd699
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion schemaValidation/string/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "v0" {
source = "./v0"
source = "../../schemaProcessor/string/v0/validator/"
count = var.schema.version == "v0" ? 1 : 0

metadata_name = var.metadata_name
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
run "missing_value" {
command = plan
module {
source = "./schemaValidation/string/v0/"
source = "./schemaProcessor/string/v0/validator/"
}

variables {
Expand All @@ -28,7 +28,7 @@ run "missing_value" {
run "with_invalid_value" {
command = plan
module {
source = "./schemaValidation/string/v0/"
source = "./schemaProcessor/string/v0/validator/"
}

variables {
Expand All @@ -55,7 +55,7 @@ run "with_invalid_value" {
run "with_wrong_minLegnth" {
command = plan
module {
source = "./schemaValidation/string/v0/"
source = "./schemaProcessor/string/v0/validator/"
}

variables {
Expand All @@ -82,7 +82,7 @@ run "with_wrong_minLegnth" {
run "with_wrong_maxLegnth" {
command = plan
module {
source = "./schemaValidation/string/v0/"
source = "./schemaProcessor/string/v0/validator/"
}

variables {
Expand Down Expand Up @@ -110,7 +110,7 @@ run "with_wrong_maxLegnth" {
run "with_valid_value" {
command = plan
module {
source = "./schemaValidation/string/v0/"
source = "./schemaProcessor/string/v0/validator/"
}

variables {
Expand Down

0 comments on commit 76fd699

Please sign in to comment.