-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: add dependabot configuration #15
base: main
Are you sure you want to change the base?
Conversation
Terraform plan in tests/plan/no_changes No changes. Your infrastructure matches the configuration.
Terraform has compared your real infrastructure against your configuration
and found no differences, so no changes are needed. Plan generated in Test terraform-plan #10 |
Terraform plan in tests/apply/vars Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# random_string.my_string will be created
+ resource "random_string" "my_string" {
+ id = (known after apply)
+ length = 11
+ lower = true
+ min_lower = 0
+ min_numeric = 0
+ min_special = 0
+ min_upper = 0
+ number = true
+ numeric = true
+ result = (known after apply)
+ special = true
+ upper = true
}
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
+ from_var = "hello"
+ from_varfile = "monkey"
+ output_string = "the_string" Plan applied in Test terraform-apply #10 |
Terraform plan in tests/apply/changes Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# random_string.my_string will be created
+ resource "random_string" "my_string" {
+ id = (known after apply)
+ length = 11
+ lower = true
+ min_lower = 0
+ min_numeric = 0
+ min_special = 0
+ min_upper = 0
+ number = true
+ numeric = true
+ result = (known after apply)
+ special = true
+ upper = true
}
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
+ output_string = "the_string" Plan applied in Test terraform-apply #10 |
Terraform plan for TestLabel Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# random_string.my_string will be created
+ resource "random_string" "my_string" {
+ id = (known after apply)
+ length = 11
+ lower = true
+ min_lower = 0
+ min_numeric = 0
+ min_special = 0
+ min_upper = 0
+ number = true
+ numeric = true
+ result = (known after apply)
+ special = true
+ upper = true
}
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
+ from_var = "world"
+ from_varfile = "monkey"
+ output_string = "the_string" Plan applied in Test terraform-apply #10 |
Terraform plan in tests/plan/plan Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# random_string.my_string will be created
+ resource "random_string" "my_string" {
+ id = (known after apply)
+ length = 11
+ lower = true
+ min_lower = 0
+ min_numeric = 0
+ min_special = 0
+ min_upper = 0
+ number = true
+ numeric = true
+ result = (known after apply)
+ special = true
+ upper = true
}
Plan: 1 to add, 0 to change, 0 to destroy.
Changes to Outputs:
+ s = "string" Plan generated in Test terraform-plan #10 |
Terraform plan in tests/plan/error Error: Incorrect attribute value type
on main.tf line 2, in resource "random_string" "my_string":
2: length = "ten"
Inappropriate value for attribute "length": a number is required. Failed to generate plan in Test terraform-plan #10 |
🟡 This pull was made automatically, and will add dependabot.yml file to make sure all Github actions (i.e. actions/checkout@v3) used in the repository workflow are up to date.
If you have any questions drop a message in #support-infra.
NI-713