diff --git a/config_tempest/config_tempest.py b/config_tempest/config_tempest.py index 619840a4..1f46dd84 100755 --- a/config_tempest/config_tempest.py +++ b/config_tempest/config_tempest.py @@ -831,18 +831,12 @@ def configure_keystone_feature_flags(conf, services): supported_versions = services.get('identity', {}).get('versions', []) for version in supported_versions: major, minor = version.split('.')[:2] - # We are going to enable two feature flags that are available - # after version 3.6: one related to domain specific roles and - # another one related to the security compliance feature. - # For more information, see - # https://developer.openstack.org/api-ref/identity/v3 + # Enable the domain specific roles feature flag. For more information, + # see https://developer.openstack.org/api-ref/identity/v3 if major == 'v3' and int(minor) >= 6: conf.set('identity-feature-enabled', 'forbid_global_implied_dsr', 'True') - conf.set('identity-feature-enabled', - 'security_compliance', - 'True') def configure_boto(conf, services): diff --git a/config_tempest/tests/test_config_tempest.py b/config_tempest/tests/test_config_tempest.py index 66b88bbc..ba250172 100644 --- a/config_tempest/tests/test_config_tempest.py +++ b/config_tempest/tests/test_config_tempest.py @@ -320,9 +320,6 @@ class TestConfigTempest(BaseConfigTempestTest): self.assertEqual( self.conf.get('identity-feature-enabled', 'forbid_global_implied_dsr'), 'True') - self.assertEqual( - self.conf.get('identity-feature-enabled', - 'security_compliance'), 'True') def test_configure_boto(self): tool.configure_boto(self.conf, self.FAKE_SERVICES)