├── 101 ├── 101-001-rg_and_network_env_vars │ ├── main.tf │ └── readme.md ├── 101-002-rg_and_network_with_auth │ ├── main.tf │ └── readme.md ├── 101-003-rg_and_network_with_external_tfvars │ ├── main.tf │ └── readme.md ├── 101-004-variables_files │ ├── main.tf │ └── variables.tf ├── 101-005-output_variables │ ├── main.tf │ ├── outputs.tf │ └── variables.tf ├── 101-007-modules-terraform_registry │ ├── commands.txt │ └── test.tf ├── 101-008-loop_and_complex_vars-example1 │ └── main.tf ├── 101-008-loop_and_complex_vars-example3 │ └── main.tf └── 101-009-complex_vars-yaml_files │ ├── config.yaml │ └── local.tf ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── REQUIREMENTS.md ├── azure ├── aks │ ├── basic_cluster │ │ ├── main.tf │ │ └── variables.tf │ └── basic_cluster2 │ │ ├── main.tf │ │ └── variables.tf ├── appservice │ ├── simple │ │ └── deploy.tf │ └── vnet_integration │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ └── variables.tf ├── automationaccount │ ├── certificate │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── scripts │ │ │ └── myscript.ps1 │ │ └── variables.tf │ ├── multiple_schedule │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── scripts │ │ │ └── myscript.ps1 │ │ └── variables.tf │ ├── multiple_schedule2 │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── scripts │ │ │ └── myscript.ps1 │ │ └── variables.tf │ ├── schedule_every_5min_arm │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── scripts │ │ │ └── myscript.ps1 │ │ └── variables.tf │ ├── simple │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── scripts │ │ │ └── myscript.ps1 │ │ └── variables.tf │ ├── upload_psmodule │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── psmodules │ │ │ ├── mymodule.zip │ │ │ └── mymodule │ │ │ │ ├── mymodule.psd1 │ │ │ │ └── mymodule.psm1 │ │ ├── runbookcode │ │ │ └── myscript.ps1 │ │ └── variables.tf │ └── webhook │ │ ├── README.md │ │ ├── arm │ │ └── azuredeploy.json │ │ ├── main.tf │ │ ├── providers.tf │ │ ├── runbookcode │ │ └── myscript.ps1 │ │ └── variables.tf ├── keyvault │ └── rbac_accesspolicies_contributor │ │ ├── README.md │ │ ├── main.tf │ │ └── variables.tf ├── network │ ├── network_module-call │ │ ├── README.md │ │ ├── backendconf.tf │ │ ├── main.tf │ │ ├── providers.tf │ │ └── variables.tf │ ├── network_module │ │ ├── examples │ │ │ ├── complete │ │ │ │ └── main.tf │ │ │ ├── localfiles-simple │ │ │ │ ├── README.md │ │ │ │ ├── backendconf.tf │ │ │ │ ├── main.tf │ │ │ │ ├── providers.tf │ │ │ │ └── variables.tf │ │ │ └── localfiles │ │ │ │ ├── README.md │ │ │ │ ├── backendconf.tf │ │ │ │ ├── main.tf │ │ │ │ ├── providers.tf │ │ │ │ └── variables.tf │ │ ├── main.tf │ │ ├── output.tf │ │ ├── readme.md │ │ └── variables.tf │ └── virtualnetwork_subnets │ │ ├── main.tf │ │ └── readme.md ├── policy │ ├── acr │ │ └── unrestricted_network │ │ │ ├── basepolicy.json │ │ │ └── policy.json │ ├── appservice │ │ ├── tls12-deployifnotexists │ │ │ ├── README.md │ │ │ ├── azurepolicy.parameters.json │ │ │ ├── azurepolicy.rules.json │ │ │ ├── main.tf │ │ │ ├── providers.tf │ │ │ ├── tests │ │ │ │ ├── azcli.md │ │ │ │ └── startremediate.ps1 │ │ │ └── variables.tf │ │ ├── tls12_v1-deny-notworking │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── policy.definition.json │ │ │ ├── policy.parameters.json │ │ │ ├── tests │ │ │ │ ├── azcli │ │ │ │ │ └── create_webapp.sh │ │ │ │ └── terraform │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.tf │ │ │ │ │ └── variables.tf │ │ │ └── variables.tf │ │ └── tls12_v2-deny-notworking │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── policy.definition.json │ │ │ ├── policy.parameters.json │ │ │ ├── tests │ │ │ ├── azcli │ │ │ │ └── create_webapp.sh │ │ │ └── terraform │ │ │ │ ├── README.md │ │ │ │ ├── main.tf │ │ │ │ └── variables.tf │ │ │ └── variables.tf │ ├── controls.md │ ├── deployifnotexists-law │ │ ├── README.md │ │ ├── deployifnotexists.md │ │ ├── law.md │ │ ├── main.tf │ │ ├── policy.json │ │ ├── policy.parameters.json │ │ └── variables.tf │ ├── deployifnotexists-lock │ │ ├── README.md │ │ ├── deployifnotexists.md │ │ ├── main.tf │ │ ├── policy.json │ │ ├── policy_tf.json │ │ ├── providers.tf │ │ └── variables.tf │ ├── deployifnotexists.md │ ├── detect_resourcegraph_changes.ps1 │ ├── k8 │ │ └── service_externalip │ │ │ └── policy.definition.json │ ├── modify-multiple_tags_all_resources │ │ ├── README.md │ │ ├── main.tf │ │ ├── policy.json │ │ ├── policy.parameters.json │ │ └── variables.tf │ ├── modify-tag_all_resources │ │ ├── README.md │ │ ├── main.tf │ │ ├── policy.json │ │ ├── policy.parameters.json │ │ └── variables.tf │ ├── servicebus │ │ └── unrestricted_network copy │ │ │ ├── basepolicy.json │ │ │ ├── policy-acr.json │ │ │ ├── policy.definition-noInternet.json │ │ │ ├── policy.json │ │ │ ├── policy2.json │ │ │ └── policy3.json │ └── simple │ │ ├── README.md │ │ ├── main.tf │ │ ├── providers.tf │ │ └── variables.tf └── virtualmachine │ ├── ubuntu_vm │ ├── main.tf │ ├── outputs.tf │ ├── readme.md │ └── variables.tf │ ├── ubuntu_vm_provisionner_ │ ├── main.tf │ ├── outputs.tf │ ├── readme.md │ └── variables.tf │ ├── ws2019_01_core-simplevm │ ├── main.tf │ ├── outputs.tf │ ├── readme.md │ └── variables.tf │ ├── ws2019_02_core-provisionner_winrm_simplecmd │ ├── files │ │ ├── firstlogoncommands.xml │ │ └── winrm.ps1 │ ├── main.tf │ ├── readme.md │ └── variables.tf │ ├── ws2019_03_core-provisionner_winrm_externalfiles │ ├── files │ │ ├── firstlogoncommands.xml │ │ └── winrm.ps1 │ ├── main.tf │ ├── readme.md │ └── variables.tf │ ├── ws2019_04_core-vmextension │ ├── main.tf │ ├── readme.md │ └── variables.tf │ └── ws2019_05_core-provisionner_local-exec │ ├── main.tf │ ├── readme.md │ └── variables.tf └── jinja2 ├── gov.json ├── index.py ├── index2.py ├── source.json └── template.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /101/101-001-rg_and_network_env_vars/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-001-rg_and_network_env_vars/main.tf -------------------------------------------------------------------------------- /101/101-001-rg_and_network_env_vars/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-001-rg_and_network_env_vars/readme.md -------------------------------------------------------------------------------- /101/101-002-rg_and_network_with_auth/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-002-rg_and_network_with_auth/main.tf -------------------------------------------------------------------------------- /101/101-002-rg_and_network_with_auth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-002-rg_and_network_with_auth/readme.md -------------------------------------------------------------------------------- /101/101-003-rg_and_network_with_external_tfvars/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-003-rg_and_network_with_external_tfvars/main.tf -------------------------------------------------------------------------------- /101/101-003-rg_and_network_with_external_tfvars/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-003-rg_and_network_with_external_tfvars/readme.md -------------------------------------------------------------------------------- /101/101-004-variables_files/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-004-variables_files/main.tf -------------------------------------------------------------------------------- /101/101-004-variables_files/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-004-variables_files/variables.tf -------------------------------------------------------------------------------- /101/101-005-output_variables/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-005-output_variables/main.tf -------------------------------------------------------------------------------- /101/101-005-output_variables/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-005-output_variables/outputs.tf -------------------------------------------------------------------------------- /101/101-005-output_variables/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-005-output_variables/variables.tf -------------------------------------------------------------------------------- /101/101-007-modules-terraform_registry/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-007-modules-terraform_registry/commands.txt -------------------------------------------------------------------------------- /101/101-007-modules-terraform_registry/test.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-007-modules-terraform_registry/test.tf -------------------------------------------------------------------------------- /101/101-008-loop_and_complex_vars-example1/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-008-loop_and_complex_vars-example1/main.tf -------------------------------------------------------------------------------- /101/101-008-loop_and_complex_vars-example3/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-008-loop_and_complex_vars-example3/main.tf -------------------------------------------------------------------------------- /101/101-009-complex_vars-yaml_files/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-009-complex_vars-yaml_files/config.yaml -------------------------------------------------------------------------------- /101/101-009-complex_vars-yaml_files/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/101/101-009-complex_vars-yaml_files/local.tf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/README.md -------------------------------------------------------------------------------- /REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/REQUIREMENTS.md -------------------------------------------------------------------------------- /azure/aks/basic_cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/aks/basic_cluster/main.tf -------------------------------------------------------------------------------- /azure/aks/basic_cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/aks/basic_cluster/variables.tf -------------------------------------------------------------------------------- /azure/aks/basic_cluster2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/aks/basic_cluster2/main.tf -------------------------------------------------------------------------------- /azure/aks/basic_cluster2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/aks/basic_cluster2/variables.tf -------------------------------------------------------------------------------- /azure/appservice/simple/deploy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/appservice/simple/deploy.tf -------------------------------------------------------------------------------- /azure/appservice/vnet_integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/appservice/vnet_integration/README.md -------------------------------------------------------------------------------- /azure/appservice/vnet_integration/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/appservice/vnet_integration/main.tf -------------------------------------------------------------------------------- /azure/appservice/vnet_integration/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/appservice/vnet_integration/providers.tf -------------------------------------------------------------------------------- /azure/appservice/vnet_integration/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/appservice/vnet_integration/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/certificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/certificate/README.md -------------------------------------------------------------------------------- /azure/automationaccount/certificate/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/certificate/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/certificate/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/certificate/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/certificate/scripts/myscript.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Doing some test 4 | #> 5 | Get-Process 6 | -------------------------------------------------------------------------------- /azure/automationaccount/certificate/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/certificate/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule/README.md -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule/scripts/myscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule/scripts/myscript.ps1 -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule2/README.md -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule2/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule2/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule2/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule2/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule2/scripts/myscript.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Doing some test 4 | #> 5 | Get-Process 6 | -------------------------------------------------------------------------------- /azure/automationaccount/multiple_schedule2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/multiple_schedule2/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/schedule_every_5min_arm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/schedule_every_5min_arm/README.md -------------------------------------------------------------------------------- /azure/automationaccount/schedule_every_5min_arm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/schedule_every_5min_arm/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/schedule_every_5min_arm/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/schedule_every_5min_arm/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/schedule_every_5min_arm/scripts/myscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/schedule_every_5min_arm/scripts/myscript.ps1 -------------------------------------------------------------------------------- /azure/automationaccount/schedule_every_5min_arm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/schedule_every_5min_arm/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/simple/README.md -------------------------------------------------------------------------------- /azure/automationaccount/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/simple/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/simple/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/simple/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/simple/scripts/myscript.ps1: -------------------------------------------------------------------------------- 1 | #test 2 | # more changes 3 | Get-Process -Name Chrome -------------------------------------------------------------------------------- /azure/automationaccount/simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/simple/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/README.md -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/psmodules/mymodule.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/psmodules/mymodule.zip -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/psmodules/mymodule/mymodule.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/psmodules/mymodule/mymodule.psd1 -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/psmodules/mymodule/mymodule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/psmodules/mymodule/mymodule.psm1 -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/runbookcode/myscript.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Doing some test 4 | #> 5 | Get-Process 6 | -------------------------------------------------------------------------------- /azure/automationaccount/upload_psmodule/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/upload_psmodule/variables.tf -------------------------------------------------------------------------------- /azure/automationaccount/webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/webhook/README.md -------------------------------------------------------------------------------- /azure/automationaccount/webhook/arm/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/webhook/arm/azuredeploy.json -------------------------------------------------------------------------------- /azure/automationaccount/webhook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/webhook/main.tf -------------------------------------------------------------------------------- /azure/automationaccount/webhook/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/webhook/providers.tf -------------------------------------------------------------------------------- /azure/automationaccount/webhook/runbookcode/myscript.ps1: -------------------------------------------------------------------------------- 1 | <# 2 | .SYNOPSIS 3 | Doing some test 4 | #> 5 | Get-Process 6 | -------------------------------------------------------------------------------- /azure/automationaccount/webhook/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/automationaccount/webhook/variables.tf -------------------------------------------------------------------------------- /azure/keyvault/rbac_accesspolicies_contributor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/keyvault/rbac_accesspolicies_contributor/README.md -------------------------------------------------------------------------------- /azure/keyvault/rbac_accesspolicies_contributor/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/keyvault/rbac_accesspolicies_contributor/main.tf -------------------------------------------------------------------------------- /azure/keyvault/rbac_accesspolicies_contributor/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/keyvault/rbac_accesspolicies_contributor/variables.tf -------------------------------------------------------------------------------- /azure/network/network_module-call/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module-call/README.md -------------------------------------------------------------------------------- /azure/network/network_module-call/backendconf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module-call/backendconf.tf -------------------------------------------------------------------------------- /azure/network/network_module-call/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module-call/main.tf -------------------------------------------------------------------------------- /azure/network/network_module-call/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module-call/providers.tf -------------------------------------------------------------------------------- /azure/network/network_module-call/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module-call/variables.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/complete/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/complete/main.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles-simple/README.md -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles-simple/backendconf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles-simple/backendconf.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles-simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles-simple/main.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles-simple/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles-simple/providers.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles-simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles-simple/variables.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles/README.md -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles/backendconf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles/backendconf.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles/main.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles/providers.tf -------------------------------------------------------------------------------- /azure/network/network_module/examples/localfiles/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/examples/localfiles/variables.tf -------------------------------------------------------------------------------- /azure/network/network_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/main.tf -------------------------------------------------------------------------------- /azure/network/network_module/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/output.tf -------------------------------------------------------------------------------- /azure/network/network_module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/readme.md -------------------------------------------------------------------------------- /azure/network/network_module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/network_module/variables.tf -------------------------------------------------------------------------------- /azure/network/virtualnetwork_subnets/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/virtualnetwork_subnets/main.tf -------------------------------------------------------------------------------- /azure/network/virtualnetwork_subnets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/network/virtualnetwork_subnets/readme.md -------------------------------------------------------------------------------- /azure/policy/acr/unrestricted_network/basepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/acr/unrestricted_network/basepolicy.json -------------------------------------------------------------------------------- /azure/policy/acr/unrestricted_network/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/acr/unrestricted_network/policy.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/README.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/azurepolicy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/azurepolicy.parameters.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/azurepolicy.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/azurepolicy.rules.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/main.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/providers.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/tests/azcli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/tests/azcli.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/tests/startremediate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/tests/startremediate.ps1 -------------------------------------------------------------------------------- /azure/policy/appservice/tls12-deployifnotexists/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12-deployifnotexists/variables.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/README.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/main.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/policy.definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/policy.definition.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/policy.parameters.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/tests/azcli/create_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/tests/azcli/create_webapp.sh -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/README.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/main.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/tests/terraform/variables.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v1-deny-notworking/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v1-deny-notworking/variables.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/README.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/main.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/policy.definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/policy.definition.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/policy.parameters.json -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/tests/azcli/create_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/tests/azcli/create_webapp.sh -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/README.md -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/main.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/tests/terraform/variables.tf -------------------------------------------------------------------------------- /azure/policy/appservice/tls12_v2-deny-notworking/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/appservice/tls12_v2-deny-notworking/variables.tf -------------------------------------------------------------------------------- /azure/policy/controls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/controls.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/README.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/deployifnotexists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/deployifnotexists.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/law.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/law.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/main.tf -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/policy.json -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/policy.parameters.json -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-law/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-law/variables.tf -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/README.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/deployifnotexists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/deployifnotexists.md -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/main.tf -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/policy.json -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/policy_tf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/policy_tf.json -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/providers.tf -------------------------------------------------------------------------------- /azure/policy/deployifnotexists-lock/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists-lock/variables.tf -------------------------------------------------------------------------------- /azure/policy/deployifnotexists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/deployifnotexists.md -------------------------------------------------------------------------------- /azure/policy/detect_resourcegraph_changes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/detect_resourcegraph_changes.ps1 -------------------------------------------------------------------------------- /azure/policy/k8/service_externalip/policy.definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/k8/service_externalip/policy.definition.json -------------------------------------------------------------------------------- /azure/policy/modify-multiple_tags_all_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-multiple_tags_all_resources/README.md -------------------------------------------------------------------------------- /azure/policy/modify-multiple_tags_all_resources/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-multiple_tags_all_resources/main.tf -------------------------------------------------------------------------------- /azure/policy/modify-multiple_tags_all_resources/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-multiple_tags_all_resources/policy.json -------------------------------------------------------------------------------- /azure/policy/modify-multiple_tags_all_resources/policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-multiple_tags_all_resources/policy.parameters.json -------------------------------------------------------------------------------- /azure/policy/modify-multiple_tags_all_resources/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-multiple_tags_all_resources/variables.tf -------------------------------------------------------------------------------- /azure/policy/modify-tag_all_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-tag_all_resources/README.md -------------------------------------------------------------------------------- /azure/policy/modify-tag_all_resources/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-tag_all_resources/main.tf -------------------------------------------------------------------------------- /azure/policy/modify-tag_all_resources/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-tag_all_resources/policy.json -------------------------------------------------------------------------------- /azure/policy/modify-tag_all_resources/policy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-tag_all_resources/policy.parameters.json -------------------------------------------------------------------------------- /azure/policy/modify-tag_all_resources/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/modify-tag_all_resources/variables.tf -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/basepolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/basepolicy.json -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/policy-acr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/policy-acr.json -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/policy.definition-noInternet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/policy.definition-noInternet.json -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/policy.json -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/policy2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/policy2.json -------------------------------------------------------------------------------- /azure/policy/servicebus/unrestricted_network copy/policy3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/servicebus/unrestricted_network copy/policy3.json -------------------------------------------------------------------------------- /azure/policy/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/simple/README.md -------------------------------------------------------------------------------- /azure/policy/simple/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/simple/main.tf -------------------------------------------------------------------------------- /azure/policy/simple/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/simple/providers.tf -------------------------------------------------------------------------------- /azure/policy/simple/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/policy/simple/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm_provisionner_/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm_provisionner_/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm_provisionner_/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm_provisionner_/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm_provisionner_/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ubuntu_vm_provisionner_/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ubuntu_vm_provisionner_/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_01_core-simplevm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_01_core-simplevm/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_01_core-simplevm/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_01_core-simplevm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_01_core-simplevm/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_01_core-simplevm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_01_core-simplevm/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/files/firstlogoncommands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/files/firstlogoncommands.xml -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/files/winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/files/winrm.ps1 -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_02_core-provisionner_winrm_simplecmd/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/files/firstlogoncommands.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/files/firstlogoncommands.xml -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/files/winrm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/files/winrm.ps1 -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_03_core-provisionner_winrm_externalfiles/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_04_core-vmextension/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_04_core-vmextension/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_04_core-vmextension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_04_core-vmextension/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_04_core-vmextension/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_04_core-vmextension/variables.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_05_core-provisionner_local-exec/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_05_core-provisionner_local-exec/main.tf -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_05_core-provisionner_local-exec/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_05_core-provisionner_local-exec/readme.md -------------------------------------------------------------------------------- /azure/virtualmachine/ws2019_05_core-provisionner_local-exec/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/azure/virtualmachine/ws2019_05_core-provisionner_local-exec/variables.tf -------------------------------------------------------------------------------- /jinja2/gov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/jinja2/gov.json -------------------------------------------------------------------------------- /jinja2/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/jinja2/index.py -------------------------------------------------------------------------------- /jinja2/index2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/jinja2/index2.py -------------------------------------------------------------------------------- /jinja2/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/jinja2/source.json -------------------------------------------------------------------------------- /jinja2/template.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazywinadmin/terraform/HEAD/jinja2/template.tf --------------------------------------------------------------------------------