惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
V2EX
Y
Y Combinator Blog
博客园_首页
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
B
Blog
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
WordPress大学
WordPress大学
L
LangChain Blog
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
C
Check Point Blog
博客园 - 聂微东
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
H
Help Net Security

The Cloud Experience Everywhere articles

Responsible AI in enterprise applications: A practical security and governance guide AI Factory economics: Determining its financial viability Enterprise test automation: Building resilient tests that survive change Evolve from traditional cost management to portfolio economics with hybrid FinOps HPE Terraform Provider 2.0 for HPE Morpheus Software, VMaaS, and HPE OpsRamp Software The virtualization strategy: Why the decision goes beyond the hypervisor Increase VM density with HPE Morpheus Software memory overcommitment Reduce alert fatigue in cloud monitoring with HPE Morpheus Software Edge AI with HPE ProLiant Compute DL380 Gen12 & NVIDIA Blackwell for Azure Local Here is a checklist to optimize software spending and reduce software audit risk. GraphQL Mesh: Unleash Unified APIs for modern enterprise integration Data protection, VM flexibility & visibility: What’s New in HPE Private Cloud PC3000 The Great VM Reset: Field lessons from HPE Discover Las Vegas 2026 HPE Morpheus Software 9.0: Take back control of hybrid cloud operations HPE Morpheus Software v9.0: HVM hypervisor features and enhancements HPE Services help customers to predict the future with smart unified cloud management Automating Kubernetes observability to simplify operations and speed onboarding HPE Services at HPE Discover Las Vegas 2026: Driving innovation in clouds & platforms From supply chain to customer decisions: Actionable product carbon footprint data Migrate to the HPE Terraform provider with confidence using tfmigrator How companies can harness GitOps and IaC to build agile private clouds Achieving continuous cloud compliance with policy as code frameworks Protect your HPE Morpheus Software virtual machines on HPE SimpliVity PC1000 The new ITIL Version 5: Why now is the moment to transform, with HPE Announcing HPE Terraform provider v1.5.0—and the road since v1.1 Sovereign AI for the workplace and why it’s now a board-level topic What I learned about Epistemia: A new way to build AI you can trust Strategy is the easy part, but can you deliver? Simplify HPE Morpheus Software automation with the new visual workflow builder AI evolution: Shifting from training to inference needs infrastructure modernization
Streamlining hybrid cloud: Announcing the unified HPE/hpe...
2026-03-17 · via The Cloud Experience Everywhere articles

Announcing the unified HPE/hpe Terraform provider v1.1.0, bringing consolidated automation, generalized resource models, and expanded integrations to simplify hybrid cloud infrastructure as code.

GettyImages-173805504_800_0_72_RGB.jpg

Automation is at the heart of the modern data center, and today, we are making it simpler for HPE customers to manage their infrastructure as code. We are thrilled to announce the general availability of the HPE/hpe Terraform provider v1.1.0.

This release is more than just a version bump; it represents a strategic consolidation of our automation tools. Moving forward, the new HPE/hpe Terraform provider v1.1.0 serves as the primary home for HPE infrastructure management, beginning with a complete integration of HPE Morpheus Enterprise Software capabilities.

One provider to rule them all

Historically, users managed their environment using separate providers for GreenLake and HPE Morpheus Enterprise. The HPE/hpe Terraform provider v1.1.0 changes the game by incorporating the entire functionality of the gomorpheus/morpheus provider into this new unified namespace.

While the provider is currently focused on HPE Morpheus Enterprise, it is designed to expand across the entire HPE portfolio. If you are currently using the stand-alone gomorpheus/morpheus provider, now is the time to plan your migration, as future updates and features are going to be prioritized here.

What’s new in HPE/hpe Terraform provider v1.1.0?

This release is packed with resources that bring your entire hybrid cloud stack under Terraform control:

  • App blueprints and catalog items: Full support for Azure Resource Manager (ARM), CloudFormation, Helm, Kubernetes, and Terraform blueprints. You can now define and publish catalog items for workflows and instances directly through the provider.
  • Deep integrations: We’ve added resources for major third-party integrations, including Ansible (and Tower), ServiceNow, Chef, Puppet, and Git.
  • Advanced luster management: New support for HPE Kubernetes Service on VMware vSphere and HVM, along with cluster layouts and packages.
  • Infrastructure essentials: Expanded support for HPE Alletra Storage MP HVM and bare metal as a service (BMaaS) datastores and VDI pools.

The shift to generalized resource models

One of the most powerful changes in the HPE/hpe Terraform provider v1.1.0 release is the introduction of generalized resource models.

In previous versions of the gomorpheus/morpheus provider, managing a multicloud environment often required specific resources for every cloud type—for example, separate resources for AWS clouds, Azure clouds, or VMware instances. This led to fragmented codebases and complex logic when scaling across different regions or providers.

The new HPE provider streamlines this by consolidating these into general resources. This allows you to use a single resource type regardless of the underlying infrastructure:

  • Compute and storage: hpe_morpheus_instance and hpe_morpheus_datastore now handle everything from public cloud virtual machines to HPE Alletra Storage MP BMaaS.
  • Networking and organization: hpe_morpheus_network, hpe_morpheus_cloud, and hpe_morpheus_group can be managed through a unified schema.
  • Governance and logic: hpe_morpheus_policy, hpe_morpheus_task, and hpe_morpheus_role have been abstracted to provide a consistent management experience across your entire tenancy.

Other technical enhancements

To support more complex configurations, we’ve introduced several technical improvements:

  • Dynamic configurations: Resources like hpe_morpheus_cloud and hpe_morpheus_instance now use dynamic attributes for their config blocks, allowing for arbitrary nested attributes that match the HPE Morpheus Enterprise API exactly.
  • Write-only attributes: Leveraging Terraform 1.11+, we now support write-only attributes for resources such as hpe_morpheus_image and hpe_morpheus_user, enhancing security for sensitive data.
  • 64-bit architecture: This provider requires 64-bit versions of the Terraform binary to enhance performance and compatibility.


Getting started and migration

Migration is straightforward. Most resources have a direct one-to-one mapping (e.g., morpheus_group becomes hpe_morpheus_group).

To start using the new provider, update your required_providers block:

Terraform

terraform {
  required_providers {
    hpe = {
      source  = "HPE/hpe"
      version = "1.1.0"
    }
  }
}

provider "hpe" {
  morpheus {
    url          = "https://your-morpheus-url.com"
    access_token = var.morpheus_token
  }
}

What’s next?

This release is just the foundation. As we continue to integrate more of the GreenLake and infrastructure portfolio into this provider, our goal is to provide a single, consistent interface for the entire HPE powered hybrid cloud.

Check out the full documentation on the Terraform Registry and start simplifying your automation today!

CTA: Visit hpe.com/us/en/morpheus-enterprise-software

By Author:
Stuart Stent
Product Manager,
HPE Morpheus Enterprise Software
Linkedin accounthttps://www.linkedin.com/in/stuartstent/