pubsub.googleapis.com/Schema
pubsub.googleapis.com/Snapshot
pubsub.googleapis.com/Subscription
pubsub.googleapis.com/Topic
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
- 조직 ID를 알고 있어야 합니다.
ORGANIZATION_ID
: 조직 ID입니다(예:123456789
).CONSTRAINT_NAME
: 새 커스텀 제약조건에 사용하려는 이름입니다. 커스텀 제약조건은custom.
으로 시작해야 하며 대문자, 소문자 또는 숫자만 포함할 수 있습니다. 예를 들면custom.messageRetentionSet
입니다. 이 필드의 최대 길이는 70자입니다.RESOURCE_NAME
: 제한하려는 객체 및 필드가 포함된Google Cloud 리소스의 정규화된 이름입니다. 예를 들면pubsub.googleapis.com/Topic
입니다.CONDITION
: 지원되는 서비스 리소스의 표현에 대해 작성된 CEL 조건. 이 필드의 최대 길이는 1000자(영문 기준)입니다. 조건을 작성하는 데 사용할 수 있는 리소스에 대한 자세한 내용은 지원되는 리소스를 참조하세요. 예를 들면"has(resource.messageRetentionDuration)"
입니다.ACTION
:condition
이 충족될 때 수행할 작업입니다. 가능한 값은ALLOW
및DENY
입니다.DISPLAY_NAME
: 제약조건에 대한 사용자 친화적인 이름. 이 필드의 최대 길이는 200자(영문 기준)입니다.DESCRIPTION
: 정책을 위반할 때 오류 메시지로 표시할 제약조건에 대한 사용자 친화적인 설명. 이 필드의 최대 길이는 2,000자(영문 기준)입니다.- Google Cloud 콘솔에서 조직 정책 페이지로 이동합니다.
- 프로젝트 선택 도구에서 조직 정책을 설정할 프로젝트를 선택합니다.
- 조직 정책 페이지의 목록에서 제약조건을 선택하여 해당 제약조건의 정책 세부정보 페이지를 봅니다.
- 이 리소스의 조직 정책을 구성하려면 정책 관리를 클릭합니다.
- 정책 수정 페이지에서 상위 정책 재정의를 선택합니다.
- 규칙 추가를 클릭합니다.
- 적용 섹션에서 이 조직 정책 적용을 사용 설정할지 여부를 선택합니다.
- 선택사항: 태그로 조직 정책을 조건부로 만들려면 조건 추가를 클릭합니다. 조건부 규칙을 조직 정책에 추가하면 비조건부 규칙을 최소 하나 이상 추가해야 합니다. 그렇지 않으면 정책을 저장할 수 없습니다. 자세한 내용은 태그를 사용하여 조직 정책 설정을 참조하세요.
- 커스텀 제약조건인 경우 변경사항 테스트를 클릭하여 이 조직 정책의 효과를 시뮬레이션할 수 있습니다. 자세한 내용은 정책 시뮬레이터로 조직 정책 변경사항 테스트를 참조하세요.
- 조직 정책을 완료하고 적용하려면 정책 설정을 클릭합니다. 정책이 적용되는 데 최대 15분이 소요됩니다.
-
PROJECT_ID
: 제약조건을 적용할 프로젝트입니다. -
CONSTRAINT_NAME
: 커스텀 제약조건에 대해 정의된 이름입니다. 예를 들면custom.messageRetentionSet
입니다. - 조직 ID
- 프로젝트 ID
다음 파일을
constraint-require-message-retention.yaml
로 저장합니다.name: organizations/ORGANIZATION_ID/customConstraints/custom.messageRetentionSet resourceTypes: - Topic methodTypes: - CREATE - UPDATE condition: "has(resource.messageRetentionDuration)" actionType: ALLOW displayName: Require message retention description: All topics must set a message retention duration.
이렇게 하면 모든 주제에서 메시지 보관 기간을 설정해야 하는 제약 조건이 정의됩니다.
제약조건을 적용합니다.
gcloud org-policies set-custom-constraint constraint-require-message-retention.yaml
제약조건이 있는지 확인합니다.
gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
출력은 다음과 비슷합니다.
CUSTOM_CONSTRAINT ACTION_TYPE METHOD_TYPES RESOURCE_TYPES DISPLAY_NAME custom.messageRetentionSet ALLOW CREATE,UPDATE pubsub.googleapis.com/Topic Require message retention ...
정책 만들기
다음 파일을
policy-require-message-retention.yaml
로 저장합니다.name: projects/PROJECT_ID/policies/custom.messageRetentionSet spec: rules: - enforce: true
여기서
PROJECT_ID
를 프로젝트 ID로 바꿉니다.정책을 적용합니다.
gcloud org-policies set-policy policy-`policy-require-message-retention.yaml`:
정책이 있는지 확인합니다.
gcloud org-policies list --project=PROJECT_ID
출력은 다음과 비슷합니다.
CONSTRAINT LIST_POLICY BOOLEAN_POLICY ETAG custom.messageRetentionSet - SET COCsm5QGENiXi2E=
정책을 적용한 후 Google Cloud 가 정책 시행을 시작할 때까지 2분 정도 기다립니다.
정책 테스트
메시지 보관을 사용 설정하지 않고 주제를 만들어 보세요.
gcloud pubsub topics create org-policy-test \ --project=PROJECT_ID \
출력은 다음과 같습니다.
Operation denied by custom org policies: ["customConstraints/custom.messageRetentionSet": "All topics must set a message retention duration."]. ERROR: Failed to create topic [projects/PROJECT_ID/topics/org-policy-test]: Operation denied by org policy: ["customConstraints/custom.messageRetentionSet": "All topics must set a message retention duration."]. ERROR: (gcloud.pubsub.topics.create) Failed to create the following: [org-policy-test].
일반적인 사용 사례의 커스텀 조직 정책 예시
다음 표에는 일반적인 사용 사례에 대한 몇 가지 커스텀 제약 조건의 구문이 나와 있습니다.
설명 제약조건 구문 주제에서 메시지의 전송 중 보장을 시행하고 허용된 지속성 영역을 하나 이상 제공해야 함 name: organizations/ORGANIZATION_ID/customConstraints/custom.enforceInTransitWithRegions resourceTypes: - pubsub.googleapis.com/Topic methodTypes: - CREATE - UPDATE condition: "resource.messageStoragePolicy.enforceInTransit == true && resource.messageStoragePolicy.allowedPersistenceRegions.size() >= 1" actionType: ALLOW displayName: Require in-transit enforcement and regions description: All topics must enable in-transit message storage policy enforcement and contain a non-empty list of allowed persistence regions.
주제에서 메시지에 전송 중 보장을 적용하고 특정 리전을 제외하도록 요구 name: organizations/ORGANIZATION_ID/customConstraints/custom.enforceInTransitWithoutUsEast1 resourceTypes: - pubsub.googleapis.com/Topic methodTypes: - CREATE - UPDATE condition: "resource.messageStoragePolicy.enforceInTransit && !resource.messageStoragePolicy.allowedPersistenceRegions.exists(r, r == 'us-east1')" actionType: ALLOW displayName: Require in-transit enforcement and restrict regions description: All topics must enable in-transit message storage policy enforcement, and exclude us-east1 from the allowed persistence regions.
구독에 최소 메시지 보관 기간 필요 name: organizations/ORGANIZATION_ID/customConstraints/custom.minMessageRetentionDuration resourceTypes: - pubsub.googleapis.com/Subscription methodTypes: - CREATE - UPDATE condition: "resource.messageRetentionDuration < duration('30m')" actionType: DENY displayName: Minimum message retention duration description: All subscriptions must retain unacked messages for at least 30 minutes.
데드 레터 처리를 사용 설정하려면 구독이 필요함 name: organizations/ORGANIZATION_ID/customConstraints/custom.requireDeadLetterPolicy resourceTypes: - pubsub.googleapis.com/Subscription methodTypes: - CREATE - UPDATE condition: "has(resource.deadLetterPolicy)" actionType: ALLOW displayName: Require dead letter policy description: All subscriptions must set a dead letter policy.
스키마가 Avro 유형이어야 함 name: organizations/ORGANIZATION_ID/customConstraints/custom.schemaIsAvro resourceTypes: - pubsub.googleapis.com/Schema methodTypes: - CREATE - UPDATE condition: "resource.type == 'AVRO'" actionType: ALLOW displayName: Schema is Avro description: All schemas must be of type Avro.
구독에 인증된 푸시 요구 name: organizations/ORGANIZATION_ID/customConstraints/custom.authenticatedPush resourceTypes: - pubsub.googleapis.com/Subscription methodTypes: - CREATE - UPDATE condition: "has(resource.pushConfig.pushEndpoint) && has(resource.pushConfig.oidcToken.serviceAccountEmail) && has(resource.pushConfig.oidcToken.audience)" actionType: ALLOW displayName: Subscription uses authenticated push description: All subscriptions must enable push authentication.
CMEK를 사용 설정하려면 주제가 필요함 name: organizations/ORGANIZATION_ID/customConstraints/custom.topicHasCmek resourceTypes: - pubsub.googleapis.com/Topic methodTypes: - CREATE - UPDATE condition: "has(resource.kmsKeyName)" actionType: ALLOW displayName: Topic has CMEK description: All topics must use a Cloud KMS CryptoKey.
Pub/Sub 지원 리소스
다음 표에는 커스텀 제약 조건에서 참조할 수 있는 Pub/Sub 리소스가 나와 있습니다.리소스 필드 pubsub.googleapis.com/Schema resource.definition
resource.name
resource.type
pubsub.googleapis.com/Snapshot resource.expireTime
resource.name
resource.topic
pubsub.googleapis.com/Subscription resource.ackDeadlineSeconds
resource.bigqueryConfig.dropUnknownFields
resource.bigqueryConfig.serviceAccountEmail
resource.bigqueryConfig.table
resource.bigqueryConfig.useTableSchema
resource.bigqueryConfig.useTopicSchema
resource.bigqueryConfig.writeMetadata
resource.cloudStorageConfig.bucket
resource.cloudStorageConfig.filenameDatetimeFormat
resource.cloudStorageConfig.filenamePrefix
resource.cloudStorageConfig.filenameSuffix
resource.cloudStorageConfig.maxBytes
resource.cloudStorageConfig.maxDuration
resource.cloudStorageConfig.maxMessages
resource.cloudStorageConfig.serviceAccountEmail
resource.deadLetterPolicy.deadLetterTopic
resource.deadLetterPolicy.maxDeliveryAttempts
resource.enableExactlyOnceDelivery
resource.enableMessageOrdering
resource.expirationPolicy.ttl
resource.filter
resource.messageRetentionDuration
resource.name
resource.pushConfig.attributes
resource.pushConfig.noWrapper.writeMetadata
resource.pushConfig.oidcToken.audience
resource.pushConfig.oidcToken.serviceAccountEmail
resource.pushConfig.pushEndpoint
resource.retainAckedMessages
resource.retryPolicy.maximumBackoff
resource.retryPolicy.minimumBackoff
resource.topic
pubsub.googleapis.com/Topic resource.ingestionDataSourceSettings.awsKinesis.awsRoleArn
resource.ingestionDataSourceSettings.awsKinesis.consumerArn
resource.ingestionDataSourceSettings.awsKinesis.gcpServiceAccount
resource.ingestionDataSourceSettings.awsKinesis.streamArn
resource.kmsKeyName
resource.messageRetentionDuration
resource.messageStoragePolicy.allowedPersistenceRegions
resource.messageStoragePolicy.enforceInTransit
resource.name
resource.schemaSettings.encoding
resource.schemaSettings.firstRevisionId
resource.schemaSettings.lastRevisionId
resource.schemaSettings.schema
다음 단계
- 조직 정책 서비스 자세히 알아보기
- 조직 정책을 만들고 관리하는 방법 자세히 알아보기
- 사전 정의된 조직 정책 제약조건의 전체 목록 참조하기
이 페이지에서는 조직 정책 서비스 커스텀 제약 조건을 사용하여 다음 Google Cloud 리소스에 대한 특정 작업을 제한하는 방법을 보여줍니다.
조직 정책에 대한 자세한 내용은 커스텀 조직 정책을 참조하세요.
조직 정책 및 제약조건 정보
Google Cloud 조직 정책 서비스를 사용하면 조직 리소스를 중앙에서 프로그래매틱 방식으로 제어할 수 있습니다. 조직 정책 관리자는 Google Cloud 리소스 계층 구조에서Google Cloud 리소스 및 이러한 리소스의 하위 요소에 적용되는 제약조건이라는 제한사항 집합인 조직 정책을 정의할 수 있습니다. 조직, 폴더 또는 프로젝트 수준에서 조직 정책을 적용할 수 있습니다.
조직 정책은 다양한 Google Cloud 서비스에 대한 사전 정의된 제약조건을 제공합니다. 그러나 조직 정책에서 제한되는 특정 필드를 보다 세부적으로 맞춤설정 가능한 방식으로 제어하려면 커스텀 제약조건을 만들고 조직 정책에 이러한 커스텀 제약조건을 사용할 수 있습니다.
정책 상속
기본적으로 조직 정책은 정책을 적용하는 리소스의 하위 요소에 상속됩니다. 예를 들어 폴더에 정책을 적용하면 Google Cloud 에서 폴더의 모든 프로젝트에 정책을 적용합니다. 이 동작 및 이를 변경하는 방법에 대한 자세한 내용은 계층 구조 평가 규칙을 참고하세요.
시작하기 전에
필요한 역할
맞춤 조직 정책을 관리하는 데 필요한 권한을 얻으려면 관리자에게 조직 리소스에 대한 조직 정책 관리자 (roles/orgpolicy.policyAdmin
) IAM 역할을 요청하세요.
역할 부여에 대한 자세한 내용은 프로젝트, 폴더, 조직에 대한 액세스 관리를 참조하세요.
커스텀 역할이나 다른 사전 정의된 역할을 통해 필요한 권한을 얻을 수도 있습니다.
커스텀 제약조건 만들기
커스텀 제약조건은 조직 정책을 적용하는 서비스에서 지원되는 리소스, 메서드, 조건, 작업을 사용하여 YAML 파일에서 정의됩니다. 커스텀 제약조건의 조건은 Common Expression Language(CEL)를 사용하여 정의됩니다. CEL을 사용해서 커스텀 제약 조건에서 조건을 빌드하는 방법은 커스텀 제약 조건 만들기 및 관리의 CEL 섹션을 참조하세요.
커스텀 제약조건을 만들려면 다음 형식을 사용하여 YAML 파일을 만듭니다.
name: organizations/ORGANIZATION_ID/customConstraints/CONSTRAINT_NAME
resourceTypes:
- RESOURCE_NAME
methodTypes:
- CREATE
- UPDATE
condition: "CONDITION"
actionType: ACTION
displayName: DISPLAY_NAME
description: DESCRIPTION
다음을 바꿉니다.
커스텀 제약조건을 만드는 방법에 대한 자세한 내용은 커스텀 제약조건 정의를 참조하세요.
커스텀 제약조건 설정
새 커스텀 제약조건의 YAML 파일을 만든 후에는 조직에서 조직 정책에 사용할 수 있도록 설정해야 합니다. 커스텀 제약조건을 설정하려면gcloud org-policies set-custom-constraint
명령어를 사용합니다.
gcloud org-policies set-custom-constraint CONSTRAINT_PATH
CONSTRAINT_PATH
를 커스텀 제약조건 파일의 전체 경로로 바꿉니다. 예를 들면 /home/user/customconstraint.yaml
입니다.
완료되면 Google Cloud 조직 정책 목록에서 조직 정책으로 커스텀 제약조건을 사용할 수 있습니다.
커스텀 제약조건이 존재하는지 확인하려면 gcloud org-policies list-custom-constraints
명령어를 사용합니다.
gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
ORGANIZATION_ID
를 조직 리소스 ID로 바꿉니다.
자세한 내용은 조직 정책 보기를 참조하세요.
커스텀 조직 정책 적용
불리언 제약조건을 참조하는 조직 정책을 만들고 해당 조직 정책을 Google Cloud 리소스에 적용하여 불리언 제약조건을 적용할 수 있습니다.콘솔
gcloud
불리언 제약조건을 적용하는 조직 정책을 만들려면 제약조건을 참조하는 정책 YAML 파일을 만듭니다.
name: projects/PROJECT_ID/policies/CONSTRAINT_NAME spec: rules: - enforce: true
다음을 바꿉니다.
제약조건이 포함된 조직 정책을 적용하려면 다음 명령어를 실행합니다.
gcloud org-policies set-policy POLICY_PATH
POLICY_PATH
를 조직 정책 YAML 파일의 전체 경로로 바꿉니다. 정책이 적용되는 데 최대 15분이 소요됩니다.
커스텀 조직 정책 테스트
다음 예에서는 특정 프로젝트의 모든 새 주제에 메시지 전송 중 보장을 적용해야 하는 커스텀 제약조건 및 정책을 만듭니다.
시작하기 전에 다음 사항을 알아야 합니다.