Some checks failed
Code Quality & Security Scan / TFLint (push) Failing after 19s
Code Quality & Security Scan / Tfsec Security Scan (push) Has been skipped
Code Quality & Security Scan / Checkov Security Scan (push) Has been skipped
Code Quality & Security Scan / Terraform Validate (push) Has been skipped
Code Quality & Security Scan / SonarQube Trigger (push) Has been skipped
- Removed provider blocks for Vault and Ansible from provider.tf - Module now accepts provider configuration from parent module - Updated Vault provider version from ~> 4.0 to ~> 5.3 for compatibility - Fixes: Module is incompatible with count, for_each, and depends_on error
15 lines
232 B
HCL
Executable File
15 lines
232 B
HCL
Executable File
terraform {
|
|
required_version = ">= 1.0"
|
|
|
|
required_providers {
|
|
ansible = {
|
|
source = "ansible/ansible"
|
|
version = "~> 1.3"
|
|
}
|
|
vault = {
|
|
source = "hashicorp/vault"
|
|
version = "~> 5.3"
|
|
}
|
|
}
|
|
}
|