ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. azure
    Log in to post
    • All categories
    • OksanaO

      Integrating Privileged Identity Manager With Azure

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure
      1
      1 Votes
      1 Posts
      114 Views
      No one has replied
    • OksanaO

      Enable Two-Factor Authentication for HA RD Gateway — Part 2

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure mfa nps remote desktop
      1
      1 Votes
      1 Posts
      405 Views
      No one has replied
    • OksanaO

      Enable Two-Factor Authentication for HA RD Gateway — Part 1

      Watching Ignoring Scheduled Pinned Locked Moved Starwind highly available azure remote desktop
      1
      1 Votes
      1 Posts
      373 Views
      No one has replied
    • OksanaO

      How to Make the Best Use of Azure Sentinel

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure security cybersecurity
      1
      1 Votes
      1 Posts
      329 Views
      No one has replied
    • OksanaO

      How to Allow Certain Resource Types in Azure Resource Groups

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure microsoft azure rbac cybersecurity
      1
      1 Votes
      1 Posts
      404 Views
      No one has replied
    • OksanaO

      Issue Kubernetes Commands Directly from Azure CLI

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind cli azure kubernetes
      1
      1 Votes
      1 Posts
      402 Views
      No one has replied
    • OksanaO

      Enhance Azure Portal Security with Multi-Factor Authentication

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure azure ad active directory
      1
      1 Votes
      1 Posts
      392 Views
      No one has replied
    • OksanaO

      Orchestrate Azure Updates and Populate Groups Automatically

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure windows server linux
      1
      1 Votes
      1 Posts
      192 Views
      No one has replied
    • OksanaO

      How to Prioritize Applications in Azure Kubernetes Service

      Watching Ignoring Scheduled Pinned Locked Moved Starwind aks kubernetes azure
      1
      0 Votes
      1 Posts
      290 Views
      No one has replied
    • M

      Azure VM + Intune Autopilot

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion azure intune autopilot azure vm
      12
      1 Votes
      12 Posts
      4k Views
      ObsolesceO

      @manny2375 said in Azure VM + Intune Autopilot:

      @obsolesce thanks I know this method works unfortunately this specific client doesn’t want anything onpremise other than networking equipment and thin clients. The autopilot feature would have been nice on azure vm though.

      Everything you are trying to do Microsoft is telling you not to do.

      Read the last part especially:

      Screenshot_20210423-164402_Edge.jpg

    • OksanaO

      How to Alter Disk Size in Existing Azure VMs

      Watching Ignoring Scheduled Pinned Locked Moved Starwind microsoft azure azure
      1
      1 Votes
      1 Posts
      211 Views
      No one has replied
    • OksanaO

      How to Relocate Applications to AKS with Azure Migrate

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure kubernetes
      1
      1 Votes
      1 Posts
      247 Views
      No one has replied
    • OksanaO

      The Character-BasedSerial Terminal from the Past — vi

      Watching Ignoring Scheduled Pinned Locked Moved Starwind microsof unix hyperconvergence azure
      1
      0 Votes
      1 Posts
      471 Views
      No one has replied
    • OksanaO

      How to Relocate Your Resources with Azure Resource Mover

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure resource manager azure
      1
      1 Votes
      1 Posts
      294 Views
      No one has replied
    • JaredBuschJ

      Yet another way Azure sucks

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion azure virtual machine
      23
      3 Votes
      23 Posts
      4k Views
      stacksofplatesS

      @flaxking said in Yet another way Azure sucks:

      @stacksofplates said in Yet another way Azure sucks:

      @IRJ said in Yet another way Azure sucks:

      @JaredBusch said in Yet another way Azure sucks:

      When you want to delete a virtual machine, you have to clean up all the its manually.

      There is not even an option to remove everything at once.

      This is by design, because all your resources are separate. Companies that leverage Azure/AWS are not using the console to deploy resources for this very reason. Using infrastructure as code is the only way to go. Both Azure and AWS offer their own IaC at no cost, but you can use terraform as an open source before neutral deployment method as well.

      Azure VMs and AWS EC2 are not VPS as you know. AWS does offer VPS style servers called lightsail. It's more affordable than EC2 and you would be able to delete with one click like youre used to doing. Of course you don't get all the other features like advanced networking, storage, etc.

      We've been looking at Pulumi lately for IaC. I'm kind of over DLCs to write things and then having to wait for that DLC to support control flows. Just let the language your used to using do the work.

      Coming from a company that only uses ARM templates, Bicep was the most exciting thing I saw at Ignite.

      The scariest thing was using AR and Teams to remotely assist with surgeries. Teams didn't even work properly for that whole presentation.

      Yeah I'm even kind of over things like Terraform.

      With Pulumi you can do things like this:

      import pulumi import pulumi_aws as aws def make_ec2(name: str): size = 't2.micro' ami = aws.get_ami(most_recent="true", owners=["137112412989"], filters=[{"name":name,"values":["amzn-ami-hvm-*"]}]) group = aws.ec2.SecurityGroup('webserver-secgrp', description='Enable HTTP access', ingress=[ { 'protocol': 'tcp', 'from_port': 22, 'to_port': 22, 'cidr_blocks': ['0.0.0.0/0'] } ]) server = aws.ec2.Instance(name, instance_type=size, vpc_security_group_ids=[group.id], # reference security group from above ami=ami.id) pulumi.export('publicIp', server.public_ip) pulumi.export('publicHostName', server.public_dns) vms = ["test","myvm","things"] for x in vms: make_ec2(x)

      You don't need to wait 6 years for the DSL to support for loops or if statements. And you can build in whatever scaffolding you want around it. Want to test your infrastructure? Include the same stuff in a testing suite. It's just much nicer overall.

    • OksanaO

      Benefits of Using Azure Automanage

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure starwind
      1
      0 Votes
      1 Posts
      132 Views
      No one has replied
    • OksanaO

      Convenient View of Your Desired Resources in Kubernetes

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure kubernetes aks gui
      1
      0 Votes
      1 Posts
      403 Views
      No one has replied
    • scottalanmillerS

      Microsoft Hid Known Vulnerability According to Senator

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion microsoft security azure solarwinds
      18
      0 Votes
      18 Posts
      2k Views
      scottalanmillerS

      @DustinB3403 said in Microsoft Hid Known Vulnerability According to Senator:

      @scottalanmiller said in Microsoft Hid Known Vulnerability According to Senator:

      @Dashrender said in Microsoft Hid Known Vulnerability According to Senator:

      you're saying that they can't ever be wrong in their releases?

      No, I'm saying that whether right or wrong is irrelevant. That it happened is what matters. Deciding if it happened accidentally or on purpose is a different discussion. Things that happen on accident doesn't make them not have happened.

      Like teen pregnancy....

      LOL, exactly.

    • OksanaO

      Enhance Security with Certificate Rotation for AKS

      Watching Ignoring Scheduled Pinned Locked Moved Starwind aks kubernetes azure
      1
      1 Votes
      1 Posts
      325 Views
      No one has replied
    • OksanaO

      Enhance Pod Communication Security with AKS Network Policies

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure kubernetes aks
      1
      1 Votes
      1 Posts
      311 Views
      No one has replied
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 14
    • 15
    • 6 / 15