sap.sap_operations.cf_service_instance_info (1.25.0) — module

Fetch information about Cloud Foundry service instance

| "added in version" 1.22.0 of sap.sap_operations"

Authors: Kirill Satarin (@kksat)

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install sap.sap_operations:==1.25.0


Add to requirements.yml

  collections:
    - name: sap.sap_operations
      version: 1.25.0

Description

Fetch information about Cloud Foundry service instance

One of I(name) or I(guid) is required


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
- name: Fetch information about service instance
  sap.sap_operations.cf_service_instance_info:
    username: user@email.domain
    password: secret
    api_endpoint: <cloud foundry api endpoint>
    name: service_instance_name
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Fetch information about service instance
  sap.sap_operations.cf_service_instance_info:
    username: user@email.domain
    password: secret
    api_endpoint: <cloud foundry api endpoint>
    guid: service_instance_guid

Inputs

    
guid:
    description: The guid of the service instance.
    required: false
    type: str

name:
    description: The name of the service instance.
    required: false
    type: str

password:
    description:
    - The password for authentication with the Cloud Foundry API.
    required: false
    type: str

username:
    description:
    - The username for authentication with the Cloud Foundry API.
    - This is SAP BTP user email address
    required: false
    type: str

api_endpoint:
    description:
    - The endpoint URL of the Cloud Foundry API.
    required: false
    type: str