Skip to content

Instantly share code, notes, and snippets.

@guiofsaints
Created August 8, 2025 19:26
Show Gist options
  • Save guiofsaints/709f82abf2b4df67bdb60a76cfe2868c to your computer and use it in GitHub Desktop.
Save guiofsaints/709f82abf2b4df67bdb60a76cfe2868c to your computer and use it in GitHub Desktop.

Revisions

  1. guiofsaints created this gist Aug 8, 2025.
    33 changes: 33 additions & 0 deletions backstage-template-array-obj-if.yaml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    parameters:
    - title: Volumes Root
    properties:
    volumes:
    type: array
    title: Configurações de Volume Root
    items:
    type: object
    properties:
    deleteOnTermination:
    type: boolean
    title: Delete on Termination?
    default: false
    rootEncrypted:
    type: boolean
    title: Root Encrypted?
    default: false
    dependencies:
    rootEncrypted:
    oneOf:
    - properties:
    rootEncrypted:
    const: false
    - properties:
    rootEncrypted:
    const: true
    kmsKeyArn:
    type: string
    title: KMS Key ARN
    required:
    - kmsKeyArn
    required:
    - volumes