This file contains hidden or 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
| [CmdletBinding()] | |
| param( | |
| [Parameter()] | |
| [switch]$Force, | |
| [Parameter()] | |
| [switch]$TestMode | |
| ) | |
| # Stay-Awake simulates natural human keyboard activity during work hours to prevent |
This file contains hidden or 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
| [ | |
| { | |
| "time": "2024-07-13T12:45:00Z", | |
| "resourceId": "/subscriptions/12345678-1234-1234-1234-123456789abc/resourceGroups/myResourceGroup/providers/Microsoft.Network/azureFirewalls/myFirewall", | |
| "category": "AzureFirewallNetworkRule", | |
| "operationName": "AzureFirewallNetworkRuleLog", | |
| "properties": { | |
| "msg": "Deny", | |
| "protocol": "TCP", | |
| "sourceIP": "203.0.113.1", |
Useful links to assist you on your journey to master OpenAI large language models.
Gist address: https://timw.info/hero
This file contains hidden or 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
| { | |
| "analysisServicesServers": "as", | |
| "apiManagementService": "apim-", | |
| "appConfigurationConfigurationStores": "appcs-", | |
| "appManagedEnvironments": "cae-", | |
| "appContainerApps": "ca-", | |
| "authorizationPolicyDefinitions": "policy-", | |
| "automationAutomationAccounts": "aa-", | |
| "cacheRedis": "redis-", | |
| "cdnProfiles": "cdnp-", |
This file contains hidden or 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
| param name string | |
| param location string = resourceGroup().location | |
| param tags object = {} | |
| param customSubDomainName string = name | |
| param deployments array = [] | |
| param kind string = 'OpenAI' | |
| param publicNetworkAccess string = 'Enabled' | |
| param sku object = { | |
| name: 'S0' |
This file contains hidden or 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
| // Reference: https://github.com/Azure-Samples/react-component-toolkit-openai-demo/tree/main | |
| targetScope = 'subscription' | |
| @minLength(1) | |
| @maxLength(64) | |
| @description('Label used to generate a short unique hash used in all resources.') | |
| param environmentName string = 'tw1' | |
| @minLength(1) |
This file contains hidden or 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
| --- | |
| - name: Install Hyper-V role and create VM on mem01 | |
| hosts: mem01 | |
| gather_facts: no | |
| tasks: | |
| - name: Install Hyper-V with GUI and PowerShell tools | |
| win_feature: | |
| name: | |
| - Hyper-V | |
| - RSAT-Hyper-V-Tools |