tags

4ops/tags/null

Terraform Module HCL NULL

Simple terraform module for tags management

Install
module "tags" {
source = "4ops/tags/null"
version = "1.0.0"
}
plain text: /constructs/tfmod-4ops-tags-null/install.txt
⭐ Source on GitHub 📦 Registry page
README

Tags Usage ``terraform module instance_tags { source = "4ops/tags/null" version = "1.0.0" name = "my-server-name" testing = "yes" } data aws_ami ubuntu { most_recent = true filter { name = "name" values = ["ubuntu/images/hvm-ssd/ubuntu-trusty-14.04-amd64-server-*"] } filter { name = "virtualization-type" values = ["hvm"] } owners = ["099720109477"] # Canonical } resource aws_instance some_server { ami = data.aws_ami.ubuntu.id instance_type = "t2.micro" tags = module.instance_tags.tags # tags = { # "Name" = "my-server-name" # "Testing" = "yes" # } } ``

Inputs (31)
NameTypeDescriptionDefault
typestring""
criticalstring""
publicstring""
productionstring""
rolestring""
azstring""
groupstring""
tierstring""
ownerstring""
terraformstring""
endpointstring""
environmentstring""
servicestring""
testingstring""
tagsmap(any){}
contactstring""
domainstring""
templatestring""
componentstring""
privatestring""
Outputs (31)
tier
version
service
terraform
contact
default
description
kubernetes_cluster
managed_by
profile
tags
critical
module
owner
private
template
az
environment
group
public
type
endpoint
name
role
production
application
cluster
component
domain
release
… and 1 more outputs
Details
FrameworkTerraform Module
LanguageHCL
Version1.0.0
Cloud NULL
★ Stars0
Forks0
Total downloads1.1k
Inputs31
Outputs31
LicenseMIT
Namespace4ops
Updated