tezvyn:

☁️DevOps & Cloud

Infrastructure, containers, CI/CD, and cloud

1161 bites

More in DevOps & Cloud — page 16

Cloud Platforms2 min read

Service-managed vs customer-managed vs BYOK keys

WHAT IT TESTS: key management control versus burden. OUTLINE: service-managed keys are automatic but opaque; CMK gives you control over rotation, policy, and revocation in a KMS; BYOK imports your own key material for compliance.

Cloud Platforms89 sec read

Granting a VM scoped storage access without static keys

WHAT IT TESTS: workload identity over static secrets. OUTLINE: attach a least-privilege role or managed identity to the VM so it gets auto-rotating temporary credentials scoped to the bucket. RED FLAG: storing access keys in config or environment variables.

Cloud Platforms87 sec read

Security Groups vs NACLs

WHAT IT TESTS: layered network access controls. OUTLINE: a security group is stateful and attached to instances or NICs; a NACL is stateless and applied at the subnet. RED FLAG: thinking NACLs are stateful or that security groups support explicit deny rules.

Cloud Platforms83 sec read

IAM Role vs IAM User

WHAT IT TESTS: identity model and credential hygiene. OUTLINE: a user is a fixed identity with long-lived credentials for a person; a role is assumable with temporary credentials for workloads or cross-account access.

Cloud Platforms86 sec read

Accelerating uncacheable dynamic traffic globally

WHAT IT TESTS: accelerating non-cacheable traffic. OUTLINE: terminate TLS at a nearby edge and ride the provider backbone via Global Accelerator or CDN dynamic acceleration; add edge compute; ultimately deploy multi-region.

Cloud Platforms88 sec read

Stable egress IPs for multi-region outbound traffic

WHAT IT TESTS: controlling egress IPs at scale. OUTLINE: route outbound traffic through NAT gateways with allocated static IPs, or centralize egress so all regions exit through a fixed small IP set you can whitelist.

Cloud Platforms86 sec read

Site-to-Site VPN vs dedicated interconnect

WHAT IT TESTS: hybrid connectivity tradeoffs. OUTLINE: VPN is quick, cheap, encrypted over public internet with variable latency; Direct Connect or ExpressRoute is a private dedicated link with consistent low latency, high bandwidth, longer lead time and…

Cloud Platforms81 sec read

CDN caching for static and dynamic content

WHAT IT TESTS: CDN cache behavior and invalidation. OUTLINE: cache static assets with long TTLs and versioned filenames; bypass or short-cache dynamic per-user responses; invalidate via fingerprinted URLs not purges.

Cloud Platforms86 sec read

DNS routing policies for active-passive failover

WHAT IT TESTS: applying DNS policies to failover. OUTLINE: a failover policy with health checks routes to primary and flips to secondary on failure; keep TTL low; pair with health checks not just policy.

Cloud Platforms85 sec read

Process running but load balancer says unhealthy

WHAT IT TESTS: debugging health checks systematically. OUTLINE: the probe path, port, protocol, or expected status may mismatch; a security group may block the probe; the app may be up but not ready.

Cloud Platforms80 sec read

Connecting two VPCs privately

WHAT IT TESTS: VPC connectivity options and their scaling tradeoffs. OUTLINE: VPC peering is simple but non-transitive and full-mesh; a Transit Gateway scales hub-and-spoke; PrivateLink exposes one service narrowly.

Cloud Platforms82 sec read

How cloud DNS resolves a URL to an IP

WHAT IT TESTS: end-to-end DNS resolution flow. OUTLINE: recursive resolver queries root, then TLD, then your authoritative cloud DNS zone; the matching record returns an IP, cached per TTL. RED FLAG: skipping the recursive resolver or caching.

Cloud Platforms83 sec read

Layer 4 vs Layer 7 load balancers

WHAT IT TESTS: OSI model and load balancer routing knowledge. OUTLINE: L4 routes on IP and TCP/UDP ports fast and protocol-blind; L7 inspects HTTP for host, path, and headers. RED FLAG: claiming L7 is always better.

Cloud Platforms2 min read

Public and private subnet VPC design

WHAT IT TESTS: core VPC networking. OUTLINE: web server in a public subnet routed to an internet gateway, database in a private subnet with no inbound from the internet, NAT for outbound. RED FLAG: placing the database in a public subnet or relying only on.

Cloud Platforms2 min read

Block storage availability across AZ failure

WHAT IT TESTS: HA design and RTO/RPO trade-offs. OUTLINE: block volumes are AZ-bound, so use snapshots, synchronous replication, or app-level replication, trading cost for lower RTO/RPO.

Cloud Platforms2 min read

Object store vs NFS consistency models

WHAT IT TESTS: distributed consistency depth. OUTLINE: S3 gives strong read-after-write per object with no partial updates; NFS offers close-to-open with shared mutable files.

Cloud Platforms86 sec read

Maximizing object-store throughput for small files

WHAT IT TESTS: object-store scaling internals. OUTLINE: spread keys across prefixes for partition parallelism, batch small files, parallelize and use multipart uploads.

Cloud Platforms88 sec read

Object storage tiers and lifecycle automation

WHAT IT TESTS: storage cost optimization. OUTLINE: tiers trade storage price for retrieval cost and latency; automate with lifecycle rules or intelligent tiering.

Cloud Platforms83 sec read

Protecting object storage from accidental loss

WHAT IT TESTS: data durability and recovery design. OUTLINE: enable versioning, MFA delete or object lock, cross-region replication, and least-privilege policies.

Cloud Platforms84 sec read

Shared file system access across many VMs

WHAT IT TESTS: managed file storage trade-offs. OUTLINE: use a managed NFS service like EFS or Filestore; watch per-operation latency, throughput modes, and metadata-heavy small-file workloads.