Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
danischm committed Jan 12, 2024
1 parent dde3cd9 commit 230e9bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .terraform-docs.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
version: '>= 0.14.0'
version: ">= 0.14.0"

formatter: markdown table

content: |-
[![Tests](https://github.com/netascode/terraform-aci-nac-tenant/actions/workflows/test.yml/badge.svg)](https://github.com/netascode/terraform-aci-nac-tenant/actions/workflows/test.yml)
*This module is no longer maintained as it has been integrated into the [nac-aci](https://github.com/netascode/terraform-aci-nac-aci) module.*
# Terraform ACI Tenant Module
A Terraform module to configure an ACI Tenant.
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!-- BEGIN_TF_DOCS -->
[![Tests](https://github.com/netascode/terraform-aci-nac-tenant/actions/workflows/test.yml/badge.svg)](https://github.com/netascode/terraform-aci-nac-tenant/actions/workflows/test.yml)

*This module is no longer maintained as it has been integrated into the [nac-aci](https://github.com/netascode/terraform-aci-nac-aci) module.*

# Terraform ACI Tenant Module

A Terraform module to configure an ACI Tenant.
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
user_defaults = { "defaults" : try(var.model.defaults, {}) }
defaults = lookup(yamldecode(data.utils_yaml_merge.defaults.output), "defaults")
defaults = yamldecode(data.utils_yaml_merge.defaults.output)["defaults"]
modules = try(var.model.modules, {})
apic = try(var.model.apic, {})
access_policies = try(local.apic.access_policies, {})
Expand Down

0 comments on commit 230e9bd

Please sign in to comment.