Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Formatting

The examples below demonstrate how to format the files in this folder.

Variables

variable "rg_name" {
  description = ""
  type = string
  default = ""
}

Outputs

output "rg_name" {
  description = ""
  value = ""
 }

Referencing Modules

module "aks_example" {
 source            = "./modules/aks"
 sku               = var.sku
 name              = "example"
 subnet_id         = ""
}