Skip to main content

布尔型

布尔值是一种基本输入法,它有两种可能的值--truefalse

💡 常用布尔用法

例如,布尔输入类型可被用来存储任何真/假门:

  • 部署环境是否锁定;
  • 环境是否应每晚关闭;
  • 服务是否处理 PII;
  • 环境是否公开;
  • 等等。

live demo 自助中心页面,我们可以看到删除回购操作,其 Confirm 输入是布尔输入。

应用程序接口定义

{
"myBooleanInput": {
"title": "My boolean input",
"icon": "My icon",
"description": "My boolean input",
"type": "boolean",
"default": true
}
}

Check out Port's API reference to learn more.

Terraform 定义

resource "port_action" "myAction" {
# ...action properties
user_properties = {
boolean_props = {
myBooleanInput = {
title = "My boolean input"
description = "My boolean input"
default = true
}
}
}
}