- Cost Optimization
- Operational Excellence
- Performance Efficiency
- Reliability
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider "azurerm" { | |
features {} | |
} | |
resource "azurerm_resource_group" "rgs" { | |
for_each = var.rgs | |
name = each.value["name"] | |
location = each.value["location"] | |
tags = lookup(each.value, "tags", null) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--=================================== www.CSMacro.com =========================================--- | |
--===========================Apex Legends - Sens 2 - v2004-20H2 or higher=====================================--- | |
--- Change the nil value to a mouse button which you want to use. | |
--- When the script is activated the CapsLock light will goes ON from your keyboard. | |
--- With clicking again the same button the weapon will be deactivated. | |
--- You can use for deactivating a different assignment with the ALL_OFF to a mouse / keyboard button. | |
--- The Keyboard assignmend works only with Logitech G Keyboards. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@minLength(3) | |
@maxLength(24) | |
@description('Provide a name for the storage account. Use only lower case letters and numbers. The name must be unique accros Azure.') | |
param storageName string | |
resource virtualNetwork 'Microsoft.Network/virtualNetworks@2019-11-01' = { | |
name: 'examplevnet' | |
location: resourceGroup().location | |
properties: { | |
addressSpace: { |
- Compute
- VMs, VM Scale Sets, K8's, Service fabric, Batch, Container Instances, Functions.
- Networking
- Virtual Network, Load Balancer, Application Gateway, VPN Gateway, DNS, Content Delivery Network, DDoS Protection, Traffic Manager, ExpressRoute, Network Watcher, Virtual WAN.
- Storage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
required_providers { | |
azurerm = { | |
source = "hashicorp/azurerm" | |
version = "~> 2.65" | |
} | |
} | |
required_version = ">= 0.15.0" | |
} |
# Configure the Azure provider
terraform {
required_providers {
azurerm = {
- Defense In Depth is a strategy that employs a series of mechanisms to slow the advance of an attack that is aimed at acquiring unauthorized access to information. Each layer provides protection so that if one layer is breached, a subsequent layer is already in place to prevent further exposure.
- States you should never assume trust but instead continually validate trust.
- Relies on verifiable user and device trust claims to grant access to organizational resources.
- Enables you to filter network traffic to and from Azure resources within an Azure Virtual Network.
- Similar to an internal firewall.
- Can contain multiple inbound and outbound security rules that enable you to filter traffic to and from resources by Source and Destination IP address, port, and protocol.
How Do I Specify NSG Rules? >
- A globally distributed, multi-model database service.
- Can elastically and independently scale throughput and storage across any number of Azure regions . worldwide.
- Take advantage of fast, single-digit-millisecond data access by using any one of the API's.
- Provides comprehensive service level agreements for throughput, latency, availability, and consistency guarantees.
NewerOlder