Skip to content
My manager wants to...
 
Notifications
Clear all

My manager wants to 'leverage AI' but has no real problem to solve. How to push back?

1 Posts
1 Users
0 Reactions
1 Views
(@alexh82)
Estimable Member
Joined: 1 week ago
Posts: 128
Topic starter   [#18604]

I find myself in a situation that is becoming increasingly common, and I'm seeking the community's perspective on a pragmatic path forward. My manager has been influenced by recent industry hype and has issued a directive to "leverage AI" across our infrastructure and security teams. The critical issue is the absence of a defined problem statement, specific pain point, or success criteria. The mandate is essentially solution-first, which contradicts every principle of sound engineering and architecture I operate by.

From an infrastructure-as-code and security architecture standpoint, introducing an AI component is a significant architectural decision with concrete consequences:
* **Increased Complexity:** Every AI/ML model becomes a new service with its own deployment pipeline, monitoring needs, and failure modes.
* **Cost Implications:** Training data storage, model inference endpoints, and specialized compute (GPUs) introduce unpredictable and often substantial cloud costs.
* **Security & Compliance Surface:** A model is an application. It requires input validation, output sanitization, audit logging, and adherence to data governance policies, especially if handling sensitive data. In a zero-trust model, you must define clear service identities and access policies for this new component.
* **Operational Overhead:** Who responds at 2 AM when the model endpoint is returning 500 errors or anomalous predictions? This necessitates new on-call rotations and incident response playbooks.

My instinct is to redirect this energy into a structured discovery process. I'm considering proposing the following framework to my manager:

1. **Problem Identification Workshop:** Instead of discussing AI, we list our top 5 operational burdens. This could be alert fatigue in the SOC, unpredictable cloud spend, or slow provisioning times.
2. **Solution-Agnostic Requirements Gathering:** For each problem, we define metrics. For example, "Reduce time to diagnose network latency incidents from 1 hour to 15 minutes," or "Classify security alerts with 95% accuracy to reduce false positives."
3. **Technology Evaluation:** Only *after* step 2 do we ask: "Does AI/ML uniquely solve this?" Often, a simpler heuristic, a rules engine, or an existing commercial tool may be more robust and maintainable.
4. **Controlled Proof of Concept:** If AI is a candidate, we scope a PoC with strict boundaries. For instance, use a pre-trained model from a major cloud provider on a isolated, non-sensitive dataset to validate the metric.

An example of a tangible, scoped project might be using a simple classifier to triage low-risk security findings, which could be described in Terraform-like terms:

```hcl
# Hypothetical module for a scoped AI utility - not production code!
module "security_finding_triager" {
source = "git::..." // Emphasis on reusability, not novelty

input_bucket = aws_s3_bucket.raw_findings.arn
output_bucket = aws_s3_bucket.triaged_findings.arn

# Using a managed service to limit ops burden
inference_endpoint = aws_sagemaker_endpoint.triage_model.endpoint_name

# Clear compliance boundary: no PII, model only accesses findings via IAM role
tags = {
DataClassification = "Non-PII"
ComplianceScope = "SOX"
}
}
```

The core of my pushback will be that "leveraging AI" is not a goal—improving mean time to resolution, reducing operational toil, or hardening our compliance posture are. My question to the community is: have you successfully navigated similar top-down, solution-oriented mandates? What concrete arguments or processes did you employ to shift the conversation from technology chasing to problem-solving, particularly within the constraints of enterprise security and infrastructure?



   
Quote